Skip to content

Commit 8c0f433

Browse files
committed
Drop python 3.7 and adds 3.11
Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
1 parent ce0d1a1 commit 8c0f433

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/PRs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
max-parallel: 2
1515
matrix:
16-
python-version: ['3.7', '3.8', '3.9', '3.10']
16+
python-version: ['3.8', '3.9', '3.10', '3.11']
1717
os: [macos-latest, windows-2019, ubuntu-latest]
1818

1919
steps:
@@ -53,7 +53,7 @@ jobs:
5353
pytest --cov=./ --cov-report=xml
5454
make doctest
5555
- name: Check that release process is not broken
56-
if: matrix.python-version == '3.7' && matrix.os == 'ubuntu-latest'
56+
if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest'
5757
run: |
5858
pip install build twine
5959
python -m build .

.github/workflows/pythonpublish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
max-parallel: 4
1212
matrix:
13-
python-version: [3.7]
13+
python-version: [3.8]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
max-parallel: 2
1515
matrix:
16-
python-version: ['3.7', '3.8', '3.9', '3.10']
16+
python-version: ['3.8', '3.9', '3.10', '3.11']
1717
os: [macos-latest, windows-2019, ubuntu-latest]
1818

1919
steps:
@@ -53,7 +53,7 @@ jobs:
5353
pytest --cov=./ --cov-report=xml
5454
make doctest
5555
- name: Check that release process is not broken
56-
if: matrix.python-version == '3.7' && matrix.os == 'ubuntu-latest'
56+
if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest'
5757
env:
5858
TWINE_USERNAME: __token__
5959
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_PASSWORD }}

0 commit comments

Comments
 (0)