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
19 changes: 9 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
django: ['4.2']
python: ['3.10', '3.11', '3.12']
django: ['4.2', '5.2']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
Expand Down Expand Up @@ -64,8 +64,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
django: ['4.2']
python: ['3.10', '3.11', '3.12']
django: ['4.2', '5.2']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
Expand All @@ -89,8 +89,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
django: ['4.2']
python: ['3.10', '3.11', '3.12']
django: ['4.2', '5.2']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
Expand All @@ -114,8 +114,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9']
django: ['4.2']
python: ['3.12']
django: ['4.2', '5.2']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
Expand All @@ -135,12 +135,11 @@ jobs:
export ST_TASK_MANAGER="celery"
uv run runtests.py
lint_format:
name: Lint & Format / Py ${{ matrix.python }} / Django ${{ matrix.django }}
name: Lint & Format / Py ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.12']
django: ['4.2']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Docs can be found at [spirit.readthedocs.io](http://spirit.readthedocs.io/en/lat

## Compatibility

* Python 3.9, 3.10, 3.11, and 3.12
* Django 4.2 LTS
* Python 3.9, 3.10, 3.11, 3.12, 3.13
* Django 4.2 LTS, 5.2 LTS
* PostgreSQL (recommended), MySQL, Oracle Database and SQLite

Constrained by "[What Python version can I use with Django?](https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django)"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.9"
dependencies = [
"Django>=4.2,<5",
"Django>=4.2,<6",
"django-haystack~=3.3",
"whoosh==2.7.4",
"mistune==0.8.4",
Expand Down
Loading