Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e69c3f6

Browse files
committed
Update trove classifiers, update minimum python version, test against py3.11
1 parent 0f13348 commit e69c3f6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: [3.7, 3.8, 3.9, "3.10"]
34+
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
3535
django-version: [3.2, 4.0, 4.1]
3636
exclude:
3737
- python-version: 3.7

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,26 @@
1919
url="https://github.com/jieter/django-tables2/",
2020
packages=find_packages(exclude=["tests.*", "tests", "example.*", "example", "docs"]),
2121
include_package_data=True, # declarations in MANIFEST.in
22-
install_requires=["Django>=1.11"],
22+
install_requires=["Django>=3.2"],
2323
extras_require={"tablib": ["tablib"]},
2424
classifiers=[
2525
"Development Status :: 5 - Production/Stable",
2626
"Environment :: Web Environment",
2727
"Framework :: Django",
2828
"Framework :: Django :: 3.2",
2929
"Framework :: Django :: 4.0",
30+
"Framework :: Django :: 4.1",
3031
"Intended Audience :: Developers",
3132
"License :: OSI Approved :: BSD License",
3233
"Operating System :: OS Independent",
3334
"Programming Language :: Python",
3435
"Programming Language :: Python :: 3",
3536
"Programming Language :: Python :: 3 :: Only",
36-
"Programming Language :: Python :: 3.6",
3737
"Programming Language :: Python :: 3.7",
3838
"Programming Language :: Python :: 3.8",
3939
"Programming Language :: Python :: 3.9",
4040
"Programming Language :: Python :: 3.10",
41+
"Programming Language :: Python :: 3.11",
4142
"Topic :: Internet :: WWW/HTTP",
4243
"Topic :: Software Development :: Libraries",
4344
],

0 commit comments

Comments
 (0)