Skip to content

Commit 37defc6

Browse files
committed
Drops support for Python 3.7, adds Python 3.11, by: Filip, Piotr
1 parent f12876e commit 37defc6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
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.7', '3.8', '3.9', '3.10' ]
10+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
1111

1212
name: Python ${{ matrix.python-version }}
1313
steps:
@@ -37,4 +37,4 @@ jobs:
3737
3838
- name: Check coverage
3939
run: |
40-
pytest --cov=cli --cov=pythonanywhere --cov=scripts --cov-fail-under=65
40+
pytest --cov=cli --cov=pythonanywhere --cov=scripts --cov-fail-under=65

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="pythonanywhere",
12-
version="0.11.0",
12+
version="0.12.0",
1313
description="PythonAnywhere helper tools for users",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",
@@ -22,10 +22,10 @@
2222
"Intended Audience :: Developers",
2323
"Topic :: Software Development :: Libraries",
2424
"License :: OSI Approved :: MIT License",
25+
"Programming Language :: Python :: 3.11",
2526
"Programming Language :: Python :: 3.10",
2627
"Programming Language :: Python :: 3.9",
2728
"Programming Language :: Python :: 3.8",
28-
"Programming Language :: Python :: 3.7",
2929
],
3030
keywords="pythonanywhere api cloud web hosting",
3131
packages=["cli", "pythonanywhere", "pythonanywhere.api"],
@@ -39,7 +39,7 @@
3939
"typer",
4040
],
4141
extras_require={},
42-
python_requires=">=3.7",
42+
python_requires=">=3.8",
4343
package_data={},
4444
data_files=[],
4545
entry_points={},

0 commit comments

Comments
 (0)