summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-10-15 21:21:14 -0500
committerMichael Merickel <michael@merickel.org>2018-10-15 21:39:01 -0500
commit4a5504787f376255fa50f50de273595ce03d1d77 (patch)
tree343526622c01486d0e1f57b1e33cc5538d5566d1
parent7b024bbcde8beabaf1144d9cef38f685e4e73a74 (diff)
downloadpyramid-4a5504787f376255fa50f50de273595ce03d1d77.tar.gz
pyramid-4a5504787f376255fa50f50de273595ce03d1d77.tar.bz2
pyramid-4a5504787f376255fa50f50de273595ce03d1d77.zip
add changes for #3387 and #3388
-rw-r--r--CHANGES.rst11
-rw-r--r--docs/whatsnew-1.10.rst10
2 files changed, 21 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index ce2ed584b..cc70dca8e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -76,6 +76,12 @@ Features
to allow users to avoid threadlocals during renderer lookup.
See https://github.com/Pylons/pyramid/pull/3358
+- Pyramid's test suite is no longer distributed with the universal wheel.
+ See https://github.com/Pylons/pyramid/pull/3387
+
+- All Python code is now formatted automatically using ``black``.
+ See https://github.com/Pylons/pyramid/pull/3388
+
Bug Fixes
---------
@@ -163,6 +169,11 @@ Backward Incompatibilities
and replaced by the ``userid`` argument.
See https://github.com/Pylons/pyramid/pull/3369
+- Removed the ``pyramid.tests`` subpackage that used to contain the Pyramid
+ test suite. These changes also changed the format of the repository to move
+ the code into a ``src`` folder.
+ See https://github.com/Pylons/pyramid/pull/3387
+
Documentation Changes
---------------------
diff --git a/docs/whatsnew-1.10.rst b/docs/whatsnew-1.10.rst
index 4a8a0237f..1e8d1a7bc 100644
--- a/docs/whatsnew-1.10.rst
+++ b/docs/whatsnew-1.10.rst
@@ -60,6 +60,12 @@ Feature Additions
- In ``cherrypy_server_runner``, prefer imports from the ``cheroot`` package over the legacy imports from `cherrypy.wsgiserver`.
See https://github.com/Pylons/pyramid/pull/3235
+- :app:`Pyramid`'s test suite is no longer distributed with the universal wheel.
+ See https://github.com/Pylons/pyramid/pull/3387
+
+- All Python code is now formatted automatically using ``black``.
+ See https://github.com/Pylons/pyramid/pull/3388
+
Deprecations
------------
@@ -105,6 +111,10 @@ Backward Incompatibilities
- Removed the ``principal`` keyword argument from :func:`pyramid.security.remember` which had been deprecated since :app:`Pyramid` 1.6 and replaced by the ``userid`` argument.
See https://github.com/Pylons/pyramid/pull/3369
+- Removed the ``pyramid.tests`` subpackage that used to contain the Pyramid test suite.
+ These changes also changed the format of the repository to move the code into a ``src`` folder.
+ See https://github.com/Pylons/pyramid/pull/3387
+
Documentation Enhancements
--------------------------