-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pin openpyssl and cryptography * Run CI on every push * Dependencies fix * Formatting * Updated installation step in actions config
- Loading branch information
Showing
3 changed files
with
22 additions
and
10 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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from setuptools import find_packages, setup | ||
|
||
PACKAGE_NAME = "taf" | ||
VERSION = "0.12.0" | ||
VERSION = "0.13.0" | ||
AUTHOR = "Open Law Library" | ||
AUTHOR_EMAIL = "[email protected]" | ||
DESCRIPTION = "Implementation of archival authentication" | ||
|
@@ -38,7 +38,7 @@ def finalize_options(self): | |
|
||
dev_require = ["bandit>=1.6.0", "black>=19.3b0", "pre-commit>=1.18.3"] | ||
|
||
tests_require = ["pytest==4.5.0", "freezegun==0.3.15"] | ||
tests_require = ["pytest==4.5.0", "freezegun==0.3.15", "jsonschema==3.2.0"] | ||
|
||
yubikey_require = ["yubikey-manager==3.0.0"] | ||
|
||
|
@@ -60,10 +60,10 @@ def finalize_options(self): | |
install_requires=[ | ||
"click==7.1", | ||
"colorama>=0.3.9", | ||
"cryptography>=3.3", | ||
"oll-tuf==0.11.2.dev9", | ||
"loguru==0.4.0", | ||
"jsonschema==3.2.0", | ||
"cryptography==3.2.1", | ||
"pyOpenSSL==20.0.1", | ||
], | ||
extras_require={ | ||
"ci": ci_require, | ||
|