Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix GHA: ubuntu-latest no longer contains Python 3.6HEADmaster | Michael Howitz | 2022-12-09 | 3 | -8/+10 |
| | |||||
* | Back to development: 4.7 | Michael Howitz | 2022-11-10 | 2 | -1/+7 |
| | |||||
* | Preparing release 4.64.6 | Michael Howitz | 2022-11-10 | 2 | -2/+2 |
| | |||||
* | Merge pull request #26 from zopefoundation/maurits-python311 | Michael Howitz | 2022-11-10 | 12 | -23/+121 |
|\ | | | | | Support Python 3.11 | ||||
| * | Moved imports from test to top of file. | Maurits van Rees | 2022-11-09 | 1 | -11/+8 |
| | | |||||
| * | Test that Python 3.11 co_positions works in our DummyFrame. | Maurits van Rees | 2022-11-08 | 2 | -4/+10 |
| | | |||||
| * | Catch exceptions in formatExceptionOnly. | Maurits van Rees | 2022-11-08 | 3 | -1/+53 |
| | | | | | | | | | | Getting an exception when reporting about a different exception is not helpful. On Python 3.11 this is needed for some HTTPErrors. | ||||
| * | Fix tests on Python 3.11. | Maurits van Rees | 2022-11-08 | 1 | -0/+9 |
| | | | | | | | | | | | | | | For DummyTraceback we need tb_lasti. For DummyFrame we need co_positions. See https://docs.python.org/3/reference/datamodel.html#traceback-objects and https://docs.python.org/3/reference/datamodel.html#codeobject.co_positions | ||||
| * | Add official support for Python 3.11. | Maurits van Rees | 2022-11-08 | 2 | -1/+2 |
| | | |||||
| * | tox -e isort-apply | Maurits van Rees | 2022-11-08 | 6 | -14/+22 |
| | | |||||
| * | Configuring for pure-python | Maurits van Rees | 2022-11-08 | 5 | -7/+32 |
|/ | |||||
* | Back to development: 4.6 | Michael Howitz | 2022-02-11 | 2 | -1/+7 |
| | |||||
* | Preparing release 4.54.5 | Michael Howitz | 2022-02-11 | 2 | -2/+2 |
| | |||||
* | Merge pull request #24 from zopefoundation/config-with-pure-python | Michael Howitz | 2022-02-11 | 10 | -20/+44 |
|\ | | | | | Add support for Python 3.10. | ||||
| * | More adaption to Python 3.10 syntax error message | Ben Greiner | 2022-02-11 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | $ python2.7 -c 'syntax error' File "<string>", line 1 syntax error ^ SyntaxError: invalid syntax $ python3.6 -c 'syntax error' File "<string>", line 1 syntax error ^ SyntaxError: invalid syntax $ python3.8 -c 'syntax error' File "<string>", line 1 syntax error ^ SyntaxError: invalid syntax $ python3.9 -c 'syntax error' File "<string>", line 1 syntax error ^ SyntaxError: invalid syntax $ python3.10 -c 'syntax error' File "<string>", line 1 syntax error ^^^^^ SyntaxError: invalid syntax | ||||
| * | Add support for Python 3.10. | Michael Howitz | 2022-02-10 | 2 | -1/+2 |
| | | | | | | | | | | This needs https://github.com/zopefoundation/zope.exceptions/pull/23 to be successful. | ||||
| * | Configuring for pure-python | Michael Howitz | 2022-02-10 | 7 | -17/+41 |
|/ | |||||
* | Make linter happy. | Michael Howitz | 2021-06-01 | 1 | -1/+2 |
| | |||||
* | Config with pure python (#20) | Michael Howitz | 2021-06-01 | 13 | -111/+257 |
| | | | | | * Add official support for Python 3.9. * Undo dropping support for Python 3.5. * Drop support for running the tests using `python setup.py test`. | ||||
* | Adapt to python 3.10 SyntaxError messages (#19) | Arthur Zamarin | 2021-06-01 | 1 | -1/+1 |
| | | | Co-authored-by: Marius Gedminas <marius@gedmin.as> | ||||
* | Merge pull request #18 from zopefoundation/all-repos_autofix_all-repos-sed | Jens Vagelpohl | 2020-10-28 | 1 | -2/+2 |
|\ | | | | | Update badge URL for Travis | ||||
| * | Update badge URL for Travisall-repos_autofix_all-repos-sed | Jürgen Gmach | 2020-10-28 | 1 | -2/+2 |
|/ | | | | Committed via https://github.com/asottile/all-repos | ||||
* | Merge pull request #17 from zopefoundation/all-repos_autofix_all-repos-sed | Jens Vagelpohl | 2020-10-28 | 1 | -1/+1 |
|\ | | | | | Use Python 3.9 final | ||||
| * | Use Python 3.9 final | Jürgen Gmach | 2020-10-28 | 1 | -1/+1 |
|/ | | | | Committed via https://github.com/asottile/all-repos | ||||
* | Back to development: 4.5 | Michael Howitz | 2020-07-16 | 2 | -1/+7 |
| | |||||
* | Preparing release 4.44.4 | Michael Howitz | 2020-07-16 | 2 | -2/+2 |
| | |||||
* | Pimp MANIFEST + delete bootstrap.py | Michael Howitz | 2020-07-16 | 3 | -218/+12 |
| | |||||
* | Add preliminary support for Python 3.9 (#16) | Michael Howitz | 2020-07-16 | 7 | -18/+14 |
| | | | | * Adapt tests to Python 3.9. * Drop support for Python 3.5 as its sunset is in some months. | ||||
* | Merge pull request #14 from zopefoundation/flake8 | Marius Gedminas | 2020-04-14 | 9 | -100/+142 |
|\ | | | | | Add tox -e flake8, fix flake8 errors | ||||
| * | Do not insist on flake8 always passingflake8 | Marius Gedminas | 2020-04-10 | 1 | -0/+2 |
| | | |||||
| * | Make the flake8 job use a separate cache | Marius Gedminas | 2020-04-10 | 1 | -14/+13 |
| | | | | | | | | | | | | | | | | | | | | | | The CACHE_NAME environment variable hack is recommended by https://docs.travis-ci.com/user/caching/ Also, AFAIU the before_cache: rm pip/debug.log is needed only if you manually try to cache the ~/.cache/pip directory, and shouldn't be needed for cache: pip. Also I like 2-space indents in YAML files so there. | ||||
| * | Add a flake8 job to Travis CI | Marius Gedminas | 2020-04-10 | 1 | -0/+6 |
| | | |||||
| * | A better way to suppress unused import warnings | Marius Gedminas | 2020-04-10 | 3 | -8/+15 |
| | | |||||
| * | Roll back some of the changes as per review comments | Marius Gedminas | 2020-04-10 | 3 | -22/+21 |
| | | |||||
| * | Add tox -e flake8, fix flake8 errors | Marius Gedminas | 2020-04-10 | 8 | -97/+126 |
| | | |||||
* | | Merge pull request #15 from zopefoundation/tox-refresh | Marius Gedminas | 2020-04-10 | 1 | -6/+4 |
|\ \ | |/ |/| | tox.ini: use extras, use python3 for docs | ||||
| * | tox.ini: use extras, use python3 for docstox-refresh | Marius Gedminas | 2020-04-10 | 1 | -6/+4 |
| | | | | | | | | | | We still need to use Python 2 for coverage because we have a bunch of Python-2-only fallback paths in exceptionformatter.py. | ||||
* | | Merge pull request #13 from zopefoundation/py38 | Marius Gedminas | 2020-04-10 | 4 | -12/+9 |
|\ \ | |/ |/| | Add Python 3.8, drop 3.4. | ||||
| * | Add Python 3.8, drop 3.4.py38 | Marius Gedminas | 2020-04-10 | 4 | -12/+9 |
|/ | |||||
* | Switch to new Framework :: Zope :: 3 classifier | Marius Gedminas | 2018-10-19 | 1 | -1/+1 |
| | | | | | See https://github.com/zopefoundation/z3c.authviewlet/pull/6#discussion_r226414566 for the background behind this. | ||||
* | Back to development: 4.4 | Michael Howitz | 2018-10-04 | 2 | -1/+7 |
| | | | | [skip ci] | ||||
* | Preparing release 4.34.3 | Michael Howitz | 2018-10-04 | 3 | -6/+6 |
| | | | | [skip ci] | ||||
* | Added support for python 3.7 (#12) | Jeremy Kolbe | 2018-10-03 | 4 | -2/+8 |
| | | | | | | * Added support for python 3.7 * Fix .travis.yml mixup | ||||
* | Use SVG icon for Travis | Marius Gedminas | 2017-10-05 | 1 | -1/+1 |
| | |||||
* | Back to development: 4.2.1 | Jason Madden | 2017-09-12 | 2 | -1/+7 |
| | |||||
* | Preparing release 4.2.04.2.0 | Jason Madden | 2017-09-12 | 2 | -2/+2 |
| | |||||
* | Merge pull request #10 from zopefoundation/issue1 | Jason Madden | 2017-09-11 | 9 | -118/+190 |
|\ | | | | | Fix non-ASCII supplement info under Python 2 and drop Py3.3. | ||||
| * | Fix non-ASCII supplement info under Python 2 and drop Py3.3.issue1 | Jason Madden | 2017-09-11 | 9 | -119/+191 |
| | | | | | | | | | | | | | | | | | | | | Fixes #1. Fix the coverage environment using zope.testrunner (nose no longer works, that same namespace path issue). Also run the doctests on all supported versions. This requires dropping Python 3.3 because sphinx needs 3.4+. | ||||
* | | Merge pull request #9 from zopefoundation/issue8 | Jason Madden | 2017-09-11 | 2 | -39/+95 |
|\ \ | |/ |/| | Update narrative docs; be sure rendering works as expected via tests | ||||
| * | Update narrative docs; be sure rendering works as expected via testsissue8 | Jason Madden | 2017-09-11 | 2 | -39/+95 |
|/ | | | | | | | Also provide more motivation and differentiation between the various forms of annotating. Fixes #8. |