Skip to content

Commit 08babaa

Browse files
committed
show that it works with cryptography main
1 parent e059599 commit 08babaa

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
strategy:
6868
matrix:
6969
TEST:
70-
- {CONTAINER: "ubuntu-bionic", TOXENV: "py36"}
7170
# cryptographyMain used since there's no wheel
7271
- {CONTAINER: "ubuntu-rolling", TOXENV: "py39-cryptographyMain"}
7372
name: "${{ matrix.TEST.TOXENV }} on ${{ matrix.TEST.CONTAINER }}"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def find_meta(meta):
9696
package_dir={"": "src"},
9797
install_requires=[
9898
# Fix cryptographyMinimum in tox.ini when changing this!
99-
"cryptography>=37.0",
99+
"cryptography>=36.0",
100100
],
101101
extras_require={
102102
"test": ["flaky", "pretend", "pytest>=3.0.1"],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ extras =
1010
deps =
1111
coverage>=4.2
1212
cryptographyMain: git+https://github.com/pyca/cryptography.git
13-
cryptographyMinimum: cryptography==37.0
13+
cryptographyMinimum: cryptography==36.0
1414
randomorder: pytest-randomly
1515
setenv =
1616
# Do not allow the executing environment to pollute the test environment

0 commit comments

Comments
 (0)