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