summaryrefslogtreecommitdiff
path: root/pyproject.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump mypy to 1.2.0Sybren A. Stüvel2023-04-231-1/+1
| | | | | Mypy is an important checker, nice to keep up to date, and it's only a development-time dependency anyway.
* Bumped version to 4.10-dev0Sybren A. Stüvel2023-04-231-1/+1
|
* Upgrade pytest to resolve security issueSybren A. Stüvel2023-04-231-2/+2
| | | | | See https://github.com/pytest-dev/py/issues/287#issuecomment-1290407715 for more info.
* Add support for Python 3.11Daniel Ziegenberg2023-04-231-0/+1
| | | | Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
* Drop support for Python 3.6Daniel Ziegenberg2022-12-061-2/+1
| | | | Signed-off-by: Daniel Ziegenberg <daniel@ziegenberg.at>
* Bumped version to 4.9Sybren A. Stüvel2022-07-201-1/+1
|
* Upgrade Sphynx 4.3 -> 5.0.2Sybren A. Stüvel2022-07-201-1/+1
|
* Do not include arbitrary files in wheelMichał Górny2022-03-131-1/+3
| | | | | | | | | | Fix the include key to apply to sdist format only. Otherwise, the listed files are added to the top directory of wheel as well and end up being installed in top-level site-packages directory, e.g.: * FILES:+usr/lib/python3.9/site-packages/CHANGELOG.md * FILES:+usr/lib/python3.9/site-packages/LICENSE * FILES:+usr/lib/python3.9/site-packages/README.md
* Bumped version to 4.9-dev0Sybren A. Stüvel2022-03-131-1/+1
|
* add GitHub URL for PyPiAndrii Oriekhov2022-02-281-0/+1
|
* Update Sphinx to allow docs generation on Python 3.10Sybren A. Stüvel2021-11-241-1/+1
|
* Bumped version to 4.8Sybren A. Stüvel2021-11-241-1/+1
|
* Update dependencies for Python 3.10 compatibilitySybren A. Stüvel2021-11-241-1/+1
|
* Add support for Python 3.10Hugo van Kemenade2021-11-031-0/+1
|
* Reformatting with BlackSybren A. Stüvel2021-03-291-0/+3
| | | | No functional changes.
* Manage dependencies with Poetry instead of PipenvSybren A. Stüvel2021-02-241-0/+53
| | | | | 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-50/+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.
* Merge branch 'version-4.1-name-fix'Sybren A. Stüvel2020-06-101-1/+1
|\
| * Fixed project name in `pyproject.toml`Sybren A. Stüvel2020-06-101-1/+1
| | | | | | | | | | This resolves the issue that the files are uploaded to the wrong project on pypi.org.
* | Bumped version to 4.2-dev0Sybren A. Stüvel2020-06-101-1/+1
|/
* Bumped version to 4.1version-4.1Sybren A. Stüvel2020-06-101-1/+1
|
* Added flake8 as development dependency and fixed reported issuesSybren A. Stüvel2019-08-041-0/+1
|
* Add support for SHA3 hashingSybren A. Stüvel2019-08-041-0/+1
| | | | | | | | | | 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/+48
Poetry has a nicer interface, performs more tasks than Pipenv, and is generally more pleasant to use.