Skip to content

Commit 684bc17

Browse files
committed
fix broken django version range
1 parent 2abac67 commit 684bc17

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ jobs:
5353
uses: extractions/setup-just@v2
5454
- name: Install Dependencies
5555
run: |
56-
just init ${{ steps.sp.outputs.python-path }} install-docs
56+
just init ${{ steps.sp.outputs.python-path }}
5757
just test-lock Django~=${{ matrix.django-version }}.0
58+
just install-docs
5859
- name: Install Emacs
5960
if: ${{ github.event.inputs.debug == 'true' }}
6061
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ keywords = [
1919
"enum", "properties", "defines", "field", "django", "database",
2020
"bitmask", "mask", "bitfield", "flags"
2121
]
22-
dependencies = ["django (>=4.2,<5.0)"]
22+
dependencies = ["django (>=3.2,<6.0)"]
2323
classifiers = [
2424
"Environment :: Console",
2525
"Framework :: Django",

0 commit comments

Comments
 (0)