-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove Django 4.1 from supported matrix, add Python 3.12
[#185819424]
- Loading branch information
1 parent
9614a60
commit 523c6a8
Showing
4 changed files
with
17 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ def get_package_name(name): | |
|
||
setup( | ||
name=get_package_name('django-donation-tracker'), | ||
version='3.1', | ||
version='3.2', | ||
author='Games Done Quick', | ||
author_email='[email protected]', | ||
packages=find_packages(include=['tracker', 'tracker.*']), | ||
|
@@ -48,10 +48,9 @@ def get_package_name(name): | |
'package': PackageCommand, | ||
}, | ||
install_requires=[ | ||
'backports.cached-property~=1.0.2;python_version<"3.8"', | ||
'celery~=5.0', | ||
'channels>=2.0', | ||
'Django>=3.2,!=4.0.*,<4.3', | ||
'Django>=3.2,!=4.0.*,!=4.1.*,<4.3', | ||
'django-ajax-selects~=2.2', | ||
'django-ical~=1.7', | ||
'django-mptt~=0.10', | ||
|
@@ -63,7 +62,7 @@ def get_package_name(name): | |
'pytz>=2019.3', | ||
'requests>=2.27.1,<2.32.0', | ||
], | ||
python_requires='>=3.7, <3.12', | ||
python_requires='>=3.8, <3.13', | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
|
@@ -73,11 +72,11 @@ def get_package_name(name): | |
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'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', | ||
'Topic :: Internet :: WWW/HTTP', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters