We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f813dfa + 0ce3fd4 commit 395f41eCopy full SHA for 395f41e
.github/workflows/test.yml
@@ -11,14 +11,20 @@ name: Build & Test
11
workflow_dispatch:
12
jobs:
13
build:
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
python-version:
18
- 3.6
19
- 3.7
20
- 3.8
21
- 3.9
22
+ include:
23
+ - os: "ubuntu-latest"
24
+ # There is no build for Python 3.6 in ubuntu>20.04.
25
+ # This unclude can be removed when we drop support for Python 3.6.
26
+ - os: "ubuntu-20.04"
27
+ python-version: "3.6"
28
steps:
29
- uses: actions/checkout@v2
30
with:
requirements.txt
@@ -1,5 +1,5 @@
1
pycryptodome==3.8.1
2
-pyOpenSSL==22.0.0
+pyOpenSSL>=22.1.0
3
setuptools>=39.0.1
4
coverage>=4.5.3
5
-cryptography>=38.0.0
+cryptography>=39.0.0
0 commit comments