-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace flake8 with ruff * Update classifiers
- Loading branch information
Showing
12 changed files
with
76 additions
and
110 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
update: all | ||
pin: False | ||
branch: | ||
schedule: "every week" | ||
search: True | ||
branch_prefix: pyup/ | ||
close_prs: True |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Add support for Django 4.x |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[bumpversion] | ||
current_version = 3.2.1.dev0 | ||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*) | ||
serialize = | ||
serialize = | ||
{major}.{minor}.{patch}.{release}{relver} | ||
{major}.{minor}.{patch} | ||
commit = True | ||
|
@@ -12,7 +12,7 @@ message = Release {new_version} | |
|
||
[bumpversion:part:release] | ||
optional_value = gamma | ||
values = | ||
values = | ||
dev | ||
a | ||
b | ||
|
@@ -25,7 +25,7 @@ values = | |
name = django-app-helper | ||
version = attr: app_helper.__version__ | ||
url = https://github.com/nephila/django-app-helper | ||
project_urls = | ||
project_urls = | ||
Documentation = https://django-app-helper.readthedocs.io/ | ||
author = Iacopo Spalletti | ||
author_email = [email protected] | ||
|
@@ -34,12 +34,13 @@ long_description = file: README.rst, HISTORY.rst | |
long_description_content_type = text/x-rst | ||
license = GPLv2+ | ||
license_file = LICENSE | ||
classifiers = | ||
classifiers = | ||
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) | ||
Development Status :: 5 - Production/Stable | ||
Framework :: Django | ||
Framework :: Django :: 2.2 | ||
Framework :: Django :: 3.2 | ||
Framework :: Django :: 4.1 | ||
Framework :: Django :: 4.2 | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
|
@@ -50,17 +51,17 @@ classifiers = | |
|
||
[options] | ||
include_package_data = True | ||
install_requires = | ||
install_requires = | ||
dj-database-url | ||
docopt | ||
six | ||
setup_requires = | ||
setup_requires = | ||
setuptools | ||
packages = find: | ||
python_requires = >=3.7 | ||
test_suite = app_helper.tests | ||
zip_safe = False | ||
keywords = | ||
keywords = | ||
django | ||
tests | ||
development | ||
|
@@ -72,12 +73,12 @@ keywords = | |
app_helper = *.html *.png *.gif *js *jpg *jpeg *svg *py *mo *po | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
console_scripts = | ||
django-app-helper = app_helper.main:main | ||
|
||
[options.extras_require] | ||
cms = django-cms>=3.7,<3.12 | ||
async = | ||
async = | ||
channels | ||
daphne | ||
|
||
|
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
Oops, something went wrong.