Skip to content

Commit bd62c49

Browse files
Drops old pythons and updates dependencies.
Co-authored-by: Piotr Kaznowski <[email protected]>
1 parent 48fbd74 commit bd62c49

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed
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.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
10+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
1111

1212
name: Python ${{ matrix.python-version }}
1313
steps:

pythonanywhere/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.15.5"
1+
__version__ = "0.16.0"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ pytest==8.3.3
88
pytest-cov==5.0.0
99
pytest-mock==3.14.1
1010
pytest-mypy==0.10.3
11-
pythonanywhere_core==0.2.4
11+
pythonanywhere_core==0.2.7
1212
requests==2.32.3
1313
responses==0.25.3
1414
schema==0.7.2
15-
snakesay==0.10.3
15+
snakesay==0.10.4
1616
tabulate==0.9.0
1717
typer==0.16.0
1818
urllib3==2.2.3

setup.py

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

1010
setup(
1111
name="pythonanywhere",
12-
version="0.15.5",
12+
version="0.16.0",
1313
description="PythonAnywhere helper tools for users",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",
@@ -26,8 +26,6 @@
2626
"Programming Language :: Python :: 3.12",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.10",
29-
"Programming Language :: Python :: 3.9",
30-
"Programming Language :: Python :: 3.8",
3129
],
3230
keywords="pythonanywhere api cloud web hosting",
3331
packages=[
@@ -38,15 +36,15 @@
3836
"docopt",
3937
"packaging",
4038
"python-dateutil",
41-
"pythonanywhere_core==0.2.4",
39+
"pythonanywhere_core==0.2.7",
4240
"requests",
4341
"schema",
44-
"snakesay",
42+
"snakesay==0.10.4",
4543
"tabulate",
4644
"typer",
4745
],
4846
extras_require={},
49-
python_requires=">=3.8",
47+
python_requires=">=3.10",
5048
package_data={},
5149
data_files=[],
5250
entry_points={

0 commit comments

Comments
 (0)