summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* 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/