Skip to content

Commit 395f41e

Browse files
Merge pull request #1 from Mastercard/main
Version update
2 parents f813dfa + 0ce3fd4 commit 395f41e

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,20 @@ name: Build & Test
1111
workflow_dispatch:
1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
1717
python-version:
1818
- 3.6
1919
- 3.7
2020
- 3.8
2121
- 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"
2228
steps:
2329
- uses: actions/checkout@v2
2430
with:

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pycryptodome==3.8.1
2-
pyOpenSSL==22.0.0
2+
pyOpenSSL>=22.1.0
33
setuptools>=39.0.1
44
coverage>=4.5.3
5-
cryptography>=38.0.0
5+
cryptography>=39.0.0

0 commit comments

Comments
 (0)