summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Release 3.5.13.5.1Chris Dent2022-06-221-1/+1
| | | | | * update tox to include py 39 * replace deprecated threading funcs
* release 3.5.03.5.0Chris Dent2020-10-121-1/+1
|
* release 3.4.63.4.6Chris Dent2020-09-251-1/+1
|
* Add an explicit dependency on setuptools for pkg_resources (#60)Michał Górny2020-09-251-1/+4
| | | | | | | Since Paste uses pkg_resources explicitly, it should have a runtime dependency on setuptools. While this does not make any difference to pip users right now, it helps packagers correctly determine the dependencies, for packaging systems that can remove/skip build-time dependencies.
* release 3.4.53.4.5Chris Dent2020-09-241-1/+1
|
* Release 3.4.43.4.4Chris Dent2020-09-091-1/+1
| | | | Work with setuptools 50.1.0+
* New version of setuptools uses `html` module from standart library (#58)Tomáš Hrnčiar2020-09-091-1/+1
| | | | | | | | which collides with `paste.util.html`. Instead of inserting it into first position of sys.path, this commit appends it to the end. Building tested in COPR: https://copr.fedorainfracloud.org/coprs/thrnciar/python-setuptools/build/1654052/ Fixes: #57
* release 3.4.33.4.3Chris Dent2020-07-221-1/+1
|
* release 3.4.23.4.2Chris Dent2020-07-141-1/+1
|
* release 3.4.13.4.1Chris Dent2020-06-041-1/+1
|
* release 3.4.03.4.0Chris Dent2020-02-121-1/+1
|
* release 3.3.03.3.0Chris Dent2020-01-281-1/+1
|
* Remove pytest-runner integration (#47)Colin Watson2020-01-271-2/+0
| | | | | | | | | | | | | `pytest-runner` describes itself as deprecated in its own package description, referring to https://github.com/pypa/setuptools/issues/1684. Using it in `setup_requires` means that any other package that depends on Paste has to install `pytest-runner` too, which is fairly heavyweight and unnecessary. (I ran into this when trying to update Launchpad to a less ancient version of Paste.) This does mean that `python setup.py test` no longer works, but, according to the setuptools issue above, that's deprecated anyway. Paste already has `tox` configuration that works well.
* relese 3.2.73.2.7Chris Dent2020-01-261-1/+1
| | | | more python3 fixes
* Release 3.2.63.2.6Chris Dent2020-01-131-1/+1
| | | | * Correct HEAD handling accept-encoding: gzip
* release 3.2.53.2.5Chris Dent2020-01-091-1/+1
|
* release 3.2.43.2.4Chris Dent2020-01-051-1/+1
|
* release 3.2.33.2.3Chris Dent2019-11-251-1/+1
|
* release 3.2.23.2.2Chris Dent2019-10-141-1/+1
| | | | * Avoid some reference cycles through tracebacks in httpserver.py
* Release 3.2.1Chris Dent2019-10-141-1/+1
| | | | * Handle io.UnsupportedOperation from socket.tell()
* release 3.2.03.2.0Chris Dent2019-09-051-1/+1
| | | | | | * Ensure unicode URLs work in TestApp. * Make LimitedLengthFile file return empty bytes. * Protect against accidental close in FieldStorage.
* release 3.1.1Chris Dent2019-08-251-1/+1
|
* release 3.1.03.1.0Chris Dent2019-07-241-1/+1
|
* release 3.0.83.0.8Chris Dent2019-03-071-1/+1
|
* Release 3.0.73.0.7Chris Dent2019-02-281-1/+1
|
* Release 3.0.63.0.6Chris Dent2019-01-071-1/+1
| | | | * Revert 3.0.5
* Release 3.0.53.0.5Chris Dent2018-11-291-1/+1
| | | | * Quiet OpenSSL deprecation warning
* release 3.0.4Chris Dent2018-11-261-1/+1
|
* release 3.0.33.0.3Chris Dent2018-11-031-1/+1
|
* Depend on pytest instead of nose (#13)Felix Yan2018-11-031-2/+2
|
* Release 3.0.23.0.2Chris Dent2018-10-311-1/+1
|
* release 3.0.13.0.1Chris Dent2018-10-241-1/+1
|
* Remove use of futureChris Dent2018-10-241-1/+1
| | | | | | | | Future is calling installation endless recursion. We are only using it for an html.escape method, so we make our own and get rid of future. Related-Bug: #6
* Prepare a 3.0.0 release3.0.0Chris Dent2018-10-241-11/+5
| | | | | This is for the sake of getting something out there, including fixes to get stuff working with Python 3.7.
* Prepare docs for publishing to RTFDfix-docsChris Dent2018-10-241-3/+3
| | | | | | | | We'd like to have a stable location for documentation. The destination will be https://pythonpaste.readthedocs.io This change also tries to make sure that there are sufficient warnings throughout about the status of Paste.
* Fix up testing after switch to pytestChris Dent2018-10-231-1/+1
| | | | | | | | | | | | | | pytest exposes many warnings, some but not all of which are cleaned up here. The main switch is to use html.escape instead of cgi.escape. This inspired the addition of 'future' to requirements. The remaining warnings are related to pytest deprecations or over-eager test discovery. It is perhaps ironic that the switch to pytest is to avoid nose being mostly dead, and now we are using features in pytest that pytest wants to make dead. These are left for later cleanups, which means that running the tests is noisy.
* Update README and setup.py for new locationChris Dent2018-10-231-1/+3
| | | | | pythonpaste.org no longer exists so we need to remove those links
* Don't raise StopIteration from generator, return insteadMiro Hron?ok2018-06-081-0/+116
See https://www.python.org/dev/peps/pep-0479/