Skip to content

Commit ceed70a

Browse files
Adds python 3.11, removes 3.7
1 parent a9e87f8 commit ceed70a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tests.yaml

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.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:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pythonanywhere-core"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "API wrapper for programmatic management of PythonAnywhere services."
55
authors = ["PythonAnywhere <[email protected]>"]
66
license = "MIT"
@@ -10,6 +10,7 @@ classifiers = [
1010
"Intended Audience :: Developers",
1111
"Topic :: Software Development :: Libraries",
1212
"License :: OSI Approved :: MIT License",
13+
"Programming Language :: Python :: 3.11",
1314
"Programming Language :: Python :: 3.10",
1415
"Programming Language :: Python :: 3.9",
1516
"Programming Language :: Python :: 3.8",

pythonanywhere_core/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"3.8": "python38",
1212
"3.9": "python39",
1313
"3.10": "python310",
14+
"3.11": "python311",
1415
}
1516

1617

0 commit comments

Comments
 (0)