-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump dependency versions and require cryptography 42
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,13 @@ | |
author_email="[email protected]", | ||
description="Python XML Signature and XAdES library", | ||
long_description=open("README.rst").read(), | ||
python_requires=">=3.7", | ||
python_requires=">=3.8", | ||
install_requires=[ | ||
# Dependencies are restricted by major version range according to semver. | ||
# By default, version minimums are set to be compatible with the oldest supported Ubuntu LTS (currently 18.04). | ||
"lxml >= 4.2.1, < 5", | ||
"cryptography >= 3.4.8", # Set to the version in Ubuntu 22.04 due to features we need from cryptography 3.1 | ||
"pyOpenSSL >= 17.5.0", | ||
"certifi >= 2018.1.18", | ||
# By default, version minimums are set to be compatible with the oldest supported Ubuntu LTS. | ||
"lxml >= 4.5.0, < 6", | ||
"cryptography >= 42.0.1", # We require cryptography 42 | ||
"certifi >= 2019.11.28", | ||
# "tsp-client >= 0.1.3", | ||
], | ||
extras_require={ | ||
|
@@ -42,11 +41,11 @@ | |
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
) |