Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
# renovate: datasource=python-version depName=python
PYTHON_VERSION: 3.14.2
# renovate: datasource=pypi depName=uv
UV_VERSION: 0.9.22
UV_VERSION: 0.9.26
# renovate: datasource=pypi depName=sphinx
SPHINX_VERSION: 9.1.0

Expand All @@ -29,7 +29,7 @@ jobs:
persist-credentials: false

- name: Install uv ${{ env.UV_VERSION }} & Python ${{ env.PYTHON_VERSION }}
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
enable-cache: true
python-version: ${{ env.PYTHON_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
args: ["--target-version=4.2"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.9
rev: v0.14.14
hooks:
- id: ruff-check
args: [ --fix ]
Expand Down
6 changes: 3 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ verify_ssl = true
name = "pypi"

[packages]
django = ">=4.2,<5.2"
django = ">=5.2,<6"
django-haystack = ">=2.8,<3.4"
djangorestframework = ">=3.12.0,<3.16"
djangorestframework = ">=3.16.1,<3.17"
python-dateutil = "*"

[dev-packages]
Expand All @@ -17,7 +17,7 @@ sphinx-rtd-theme = "*"
geopy = "*"
tox = "*"
wheel = "*"
elasticsearch = ">=2.0.0,<=8.3.3"
elasticsearch = ">=8.19.3,<=8.19.3"

[requires]
python_version = "3"
Loading