Skip to content

Commit 618ba89

Browse files
committed
chore: drop support for python 3.7 and add 3.13
1 parent 23dce56 commit 618ba89

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-20.04, windows-latest]
14-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1515

1616
steps:
1717
- uses: actions/checkout@v4

flask_minify/about.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
__license__ = "MIT"
44
__author__ = "Mohamed Feddad"
55
__email__ = "[email protected]"
6+
__supported_versions__ = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from setuptools import setup
44

5-
supported_versions = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
65
optional_requirements = {"go": 'tdewolff-minify>=2.20.34; platform_system == "Linux"'}
76
basedir = path.abspath(path.dirname(__file__))
87
long_description = ""
@@ -38,7 +37,7 @@
3837
requirements += [line for line in f.read().split("\n") if line]
3938

4039
supported_python_classifiers = [
41-
"Programming Language :: Python :: {0}".format(v) for v in supported_versions
40+
"Programming Language :: Python :: {0}".format(v) for v in __supported_versions__
4241
]
4342

4443
setup(

0 commit comments

Comments
 (0)