Skip to content

Commit 21a299f

Browse files
musicsnobjdwolfhub
authored andcommitted
add py versions 3.9, 3.10, 3.11
1 parent ad04c54 commit 21a299f

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8.18"]
10+
python-version: ["3.8.18", "3.9.21", "3.10.16", "3.11.11"]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: set up Python ${{ matrix.python-version }}

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# For older Python versions < 3.6 (example threshold), install an older Pytest:
1+
# For older Python versions < 3.6 install Pytest 3.5.0
22
pytest==3.5.0; python_version < "3.6"
33

4-
# For Python 3.6+ or 3.8+, install a more modern Pytest:
4+
# For Python 3.6+, install a more modern Pytest:
55
pytest==7.4.2; python_version >= "3.6"

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[tox]
2-
envlist = py38
2+
envlist = py38, py39, py310, py311
33
isolated_build = True
44

55
[testenv]
66
deps =
77
pytest
88
commands =
99
pytest
10-
python tests/test_compatibility.py tests/password_expected_value.json

0 commit comments

Comments
 (0)