Skip to content

Commit 8e4aa0e

Browse files
ci: remove python3.6 from GHA, add python3.10 and python3.11 (python-semantic-release#541)
* ci: remove python3.6 from GHA, add python3.10 and python3.11 GHA workflows are failing without this, due to https://github.com/actions/setup-python/issues/544\#issuecomment-1332535877 * fix: upgrade pytest
1 parent efb3410 commit 8e4aa0e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1515

1616
steps:
1717
- uses: actions/checkout@v3

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1313

1414
steps:
1515
- uses: actions/checkout@v3

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _read_long_description():
5656
extras_require={
5757
"test": [
5858
"coverage>=5,<6",
59-
"pytest>=5,<6",
59+
"pytest>=7,<8",
6060
"pytest-xdist>=1,<2",
6161
"pytest-mock>=2,<3",
6262
"responses==0.13.3",
@@ -74,9 +74,10 @@ def _read_long_description():
7474
classifiers=[
7575
"Programming Language :: Python",
7676
"Programming Language :: Python :: 3",
77-
"Programming Language :: Python :: 3.6",
7877
"Programming Language :: Python :: 3.7",
7978
"Programming Language :: Python :: 3.8",
8079
"Programming Language :: Python :: 3.9",
80+
"Programming Language :: Python :: 3.10",
81+
"Programming Language :: Python :: 3.11",
8182
],
8283
)

0 commit comments

Comments
 (0)