Skip to content

Commit

Permalink
Release/0.13.0 (#187)
Browse files Browse the repository at this point in the history
* Pin openpyssl and cryptography

* Run CI on every push

* Dependencies fix

* Formatting

* Updated installation step in actions config
  • Loading branch information
renatav authored Oct 20, 2021
1 parent 9fb8a5f commit dfe3d7c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
on:
pull_request:
branches: [master]
on: [push, pull_request]

jobs:
build:
Expand All @@ -16,8 +14,7 @@ jobs:
run: |
sudo apt-get install libhdf5-serial-dev zlib1g-dev libatlas-base-dev lcov swig3.0 libpcsclite-dev
mkdir -p ~/bin/ && ln -s /usr/bin/swig3.0 ~/bin/swig && export PATH=~/bin/:$PATH
pip install -e .[ci] # Install with CI deps
pip install -e .[yubikey]
pip install -e .[ci,test,yubikey] # Install with CI deps
- name: Run pre-commit and test with pytest
run: |
pre-commit run --all-files
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,23 @@ and this project adheres to [Semantic Versioning][semver].
### Fixed


## [0.13.0] - 10/20/2021

## [0.12.0] - 09/29/2021
### Added


### Changed

- Pin cryptography and pyOpenSSL versions to keep compatibility with yubikey-manager 3.0.0 ([184])


### Fixed


[183] https://github.com/openlawlibrary/taf/pull/184


## [0.12.0] - 10/18/2021

### Added

Expand Down
8 changes: 4 additions & 4 deletions setup.py
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"
Expand Down Expand Up @@ -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"]

Expand All @@ -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,
Expand Down

0 comments on commit dfe3d7c

Please sign in to comment.