Skip to content

Commit

Permalink
Drop python 3.7 & add 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
alisaifee committed Nov 25, 2023
1 parent 39dcfa3 commit 3159f82
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Cache dependencies
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
flask-version: [">2,<2.1", ">=2.1,<2.2", ">=2.2,<2.3", ">=2.3,<2.4"]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion CLASSIFIERS
Expand Up @@ -7,8 +7,8 @@ Operating System :: MacOS
Operating System :: POSIX :: Linux
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -38,7 +38,7 @@
description="Rate limiting for flask applications",
long_description=open("README.rst").read(),
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.7",
python_requires=">=3.8",
extras_require=EXTRA_REQUIREMENTS,
include_package_data=True,
package_data={
Expand Down

0 comments on commit 3159f82

Please sign in to comment.