Skip to content

Commit

Permalink
Drops support for Python 3.7, adds Python 3.11, by: Filip, Piotr
Browse files Browse the repository at this point in the history
  • Loading branch information
caseneuve committed Jul 28, 2023
1 parent f12876e commit 37defc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]

name: Python ${{ matrix.python-version }}
steps:
Expand Down Expand Up @@ -37,4 +37,4 @@ jobs:
- name: Check coverage
run: |
pytest --cov=cli --cov=pythonanywhere --cov=scripts --cov-fail-under=65
pytest --cov=cli --cov=pythonanywhere --cov=scripts --cov-fail-under=65
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="pythonanywhere",
version="0.11.0",
version="0.12.0",
description="PythonAnywhere helper tools for users",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -22,10 +22,10 @@
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
],
keywords="pythonanywhere api cloud web hosting",
packages=["cli", "pythonanywhere", "pythonanywhere.api"],
Expand All @@ -39,7 +39,7 @@
"typer",
],
extras_require={},
python_requires=">=3.7",
python_requires=">=3.8",
package_data={},
data_files=[],
entry_points={},
Expand Down

0 comments on commit 37defc6

Please sign in to comment.