Skip to content

Commit

Permalink
Switch to fork of django-url-filter and drop Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
stevelacey committed Jan 31, 2023
1 parent 1ce733f commit 6506b1d
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
python: [3.8, 3.9, "3.10", 3.11]
python: [3.9, "3.10", 3.11]
django: [3.2, "4.0", 4.1]
exclude:
- python: 3.11
Expand Down
59 changes: 30 additions & 29 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ INSTALLED_APPS = [
Requirements
------------

- Python (3.8, 3.9, 3.10, 3.11)
- Python (3.9, 3.10, 3.11)
- Django (3.2, 4.0, 4.1)


Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def get_version(rel_path):
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -52,10 +51,10 @@ def get_version(rel_path):
include_package_data=True,
install_requires=[
"Django>=3.0.0,<4.2",
"django-url-filter>=0.3.15",
"dj-url-filter>=0.4.2",
"marshmallow>=3.18.0",
],
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.8",
python_requires=">=3.9",
zip_safe=False,
)
1 change: 0 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def pytest_configure():
],
TIME_ZONE="UTC",
USE_I18N=False,
USE_L10N=False,
USE_TZ=True,
WORF_API_NAME="Test API",
WORF_DEBUG=False,
Expand Down

0 comments on commit 6506b1d

Please sign in to comment.