summaryrefslogtreecommitdiff
path: root/poetry.lock
Commit message (Collapse)AuthorAgeFilesLines
* Bump mypy to 1.2.0Sybren A. Stüvel2023-04-231-22/+15
| | | | | Mypy is an important checker, nice to keep up to date, and it's only a development-time dependency anyway.
* Upgrade pytest to resolve security issueSybren A. Stüvel2023-04-231-40/+24
| | | | | See https://github.com/pytest-dev/py/issues/287#issuecomment-1290407715 for more info.
* Regenerate poetry.lockSybren A. Stüvel2023-04-231-2/+8
| | | | Just adds a few hashes, nothing more.
* Run `poetry update` to re-lock dependenciesSybren A. Stüvel2023-04-231-156/+116
|
* Upgrade Sphynx 4.3 -> 5.0.2Sybren A. Stüvel2022-07-201-384/+58
|
* Update Sphinx to allow docs generation on Python 3.10Sybren A. Stüvel2021-11-241-12/+12
|
* Update dependencies for Python 3.10 compatibilitySybren A. Stüvel2021-11-241-137/+172
|
* Run 'poetry lock' to bump typed_ast to support Python 3.10Hugo van Kemenade2021-11-031-254/+292
|
* Manage dependencies with Poetry instead of PipenvSybren A. Stüvel2021-02-241-0/+956
| | | | | Poetry is nicer to work with than Pipenv + setup.py. This drops Python 3.5 support; that's ok, since that version is EOL.
* Moving back to Pipenv to manage dependenciesSybren A. Stüvel2020-06-111-1008/+0
| | | | | | | | | | | | | Poetry breaks no-binary installations of the RSA library, which defeats the purpose of this library. See https://github.com/sybrenstuvel/python-rsa/issues/148 Among other changes, this reverts commit fcf5b7457c70426a242b17db20dd4e34e1055f69. I also added a workaround for an `ImportError` importing `zipp` on Python 3.5.
* Add support for Python 3.8Sybren A. Stüvel2020-06-101-162/+574
| | | | | | Supporting Python 3.8 not only required configuring Tox and Travis to run the tests on that version, but also required updating the dependencies. Without that update, `pluggy` wouldn't work properly.
* Added flake8 as development dependency and fixed reported issuesSybren A. Stüvel2019-08-041-1/+52
|
* Add support for SHA3 hashingSybren A. Stüvel2019-08-041-1/+11
| | | | | | | | | | This is based on https://github.com/sybrenstuvel/python-rsa/pull/96, with a few improvements: - The minimum of one use of SHA3 in a unit test, to at least touch it at some point. - Documented the support of SHA3. - Only install the third-party library required by Python 3.5 when we're running on Python 3.5. Newer Python versions support SHA3 natively.
* Switch from Pipenv to PoetrySybren A. Stüvel2019-08-041-0/+535
Poetry has a nicer interface, performs more tasks than Pipenv, and is generally more pleasant to use.