15
0
forked from pool/python-Paste

- update to 3.0.5:

* make tests pass after 2031
  * Use correct variable when building message for exception
  * Remove use of OpenSSL.tsafe, which links to OpenSSL.SSL anyways. (#16)
  * Fix error on httpserver shutdown
  * Add support for limited testing with travis-ci
  * Merged in hroncok/paste/py37 (pull request #41)
  * Don't raise StopIteration from generator, return instead
  * Fix up testing after switch to pytest
  * Make iterators Python3-compatible
  * Remove use of future
  * Don't raise StopIteration inside a generator
  * add link to read the docs to README
  * Release 3.0.2
  * Release 3.0.5
  * Prepare docs for publishing to RTFD
  * Run tox with Python 3.6 and 3.7
  * Prepare a 3.0.0 release
  * release 3.0.1
  * py3 fixes for form handling in paste.fixture (#8)
  * release 3.0.3
  * Special case py37
  * release 3.0.4
  * Switch from nose to pytest
  * Pytest fixes (#9)
  * paste.fixture: fix form offset handling (#12)
  * Add a simple .gitignore
  * Don't delete dict item while iterating over same dict (#14)
  * Depend on pytest instead of nose (#13)
  * Fix proxy test

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Paste?expand=0&rev=25
This commit is contained in:
2018-12-17 21:10:44 +00:00
committed by Git OBS Bridge
parent e1dbddccd4
commit 11693b901b
5 changed files with 44 additions and 33 deletions

View File

@@ -1,3 +1,41 @@
-------------------------------------------------------------------
Mon Dec 17 21:04:26 UTC 2018 - Thomas Bechtold <tbechtold@suse.com>
- update to 3.0.5:
* make tests pass after 2031
* Use correct variable when building message for exception
* Remove use of OpenSSL.tsafe, which links to OpenSSL.SSL anyways. (#16)
* Fix error on httpserver shutdown
* Add support for limited testing with travis-ci
* Merged in hroncok/paste/py37 (pull request #41)
* Don't raise StopIteration from generator, return instead
* Fix up testing after switch to pytest
* Make iterators Python3-compatible
* Remove use of future
* Don't raise StopIteration inside a generator
* add link to read the docs to README
* Release 3.0.2
* Release 3.0.5
* Prepare docs for publishing to RTFD
* Run tox with Python 3.6 and 3.7
* Prepare a 3.0.0 release
* release 3.0.1
* py3 fixes for form handling in paste.fixture (#8)
* release 3.0.3
* Special case py37
* release 3.0.4
* Switch from nose to pytest
* Pytest fixes (#9)
* paste.fixture: fix form offset handling (#12)
* Add a simple .gitignore
* Don't delete dict item while iterating over same dict (#14)
* Depend on pytest instead of nose (#13)
* Fix proxy test
* Enable coverage reporting via codecov (#10)
* Update README and setup.py for new location
* Added tag 2.0.3 for changeset 768835f3c1b7
- Drop python37.patch. No longer needed
-------------------------------------------------------------------
Thu Oct 18 09:19:55 UTC 2018 - Tomáš Chvátal <tchvatal@suse.com>