Skip to content
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
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install Flit
run: pip install flit
- name: Install Flit
run: pip install "flit<4" "flit_core<4"
- name: Install Dependencies
run: make install
- name: Install build dependencies
Expand All @@ -28,4 +28,3 @@ jobs:
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Deploy Documentation
run: make doc-deploy

2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
python-version: '3.14'
- name: Install Flit
run: pip install flit "django>=6.0,<7"
run: pip install "flit<4" "flit_core<4" "django>=6.0,<7"
- name: Install Dependencies
run: make install
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
with:
python-version: '3.12'
- name: Install Flit
run: pip install flit
run: pip install "flit<4" "flit_core<4"
- name: Install Dependencies
run: make install
- name: Ruff Linting Check
Expand Down
2 changes: 1 addition & 1 deletion ninja_extra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Django Ninja Extra - Class Based Utility and more for Django Ninja(Fast Django REST framework)"""

__version__ = "0.31.6"
__version__ = "0.31.7"

import django

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ classifiers = [

requires = [
"Django >= 2.2",
"django-ninja >= 1.6.0",
"django-ninja >= 1.6.3",
"injector >= 0.19.0",
"asgiref",
"contextlib2"
Expand Down