Skip to content

Commit d3085dc

Browse files
committed
stop testing with Python 3.7; add 3.10 and 3.11
1 parent 47c6d56 commit d3085dc

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- name: Install libarchive
1616
run: sudo apt-get install -y libarchive13
17+
- name: Install Python 3.11
18+
uses: actions/setup-python@v2
19+
with:
20+
python-version: '3.11'
21+
- name: Install Python 3.10
22+
uses: actions/setup-python@v2
23+
with:
24+
python-version: '3.10'
1725
- name: Install Python 3.9
1826
uses: actions/setup-python@v2
1927
with:
@@ -22,10 +30,6 @@ jobs:
2230
uses: actions/setup-python@v2
2331
with:
2432
python-version: '3.8'
25-
- name: Install Python 3.7
26-
uses: actions/setup-python@v2
27-
with:
28-
python-version: '3.7'
2933
- name: Install tox
3034
run: pip install tox
3135
- name: Run the tests

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Compatibility
1414
python
1515
------
1616

17-
python-libarchive-c is currently tested with python 3.7, 3.8, and 3.9.
17+
python-libarchive-c is currently tested with python 3.8, 3.9, 3.10 and 3.11.
1818

1919
If you find an incompatibility with older versions you can send us a small patch,
2020
but we won't accept big changes.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py37,py38,py39
2+
envlist=py38,py39,py310,py311
33
skipsdist=True
44

55
[testenv]

0 commit comments

Comments
 (0)