Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Django 5.1 Support #153

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "Django~=5.0"
pip install "Django~=5.1"
pip install -r example/requirements-ci.txt
- name: Setup DB
run: |
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "Django~=5.0"
pip install "Django~=5.1"
pip install -r example/requirements-ci.txt
- name: Setup DB
run: |
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "Django~=5.0"
pip install "Django~=5.1"
pip install -r example/requirements-ci.txt
- name: Setup DB
run: |
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_version(path):
packages=find_packages(exclude=['example']),
include_package_data=True,
install_requires=[
'Django>=4.2,<5.1',
'Django>=4.2,<5.2',
'typing_extensions>=4.1',
'django-fast-update'
],
Expand All @@ -42,6 +42,7 @@ def get_version(path):
'Framework :: Django',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down
Loading