Skip to content

Commit dba8e89

Browse files
authored
Merge pull request #64 from stefanofusai/59-unpin-dependencies
2 parents d954bac + 5339ca0 commit dba8e89

File tree

4 files changed

+26
-37
lines changed

4 files changed

+26
-37
lines changed

.pre-commit-config.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,5 @@ repos:
6969
rev: 0.5.6
7070
hooks:
7171
- id: uv-lock
72+
args:
73+
- --resolution=lowest-direct

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ class MyAPIView(...):
5656
## Development
5757

5858
```bash
59-
uv sync --group=development
60-
uv run pre-commit install --install-hooks
61-
uv run pre-commit install --hook-type=commit-msg
59+
uv sync --frozen --group=development
60+
uv run --frozen pre-commit install --install-hooks
61+
uv run --frozen pre-commit install --hook-type=commit-msg
6262
```
6363

6464
## Contributing

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "drf-haystack-search-filter"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
description = "A django-haystack search filter for Django Rest Framework."
55
readme = "README.md"
66
authors = [
@@ -11,9 +11,9 @@ maintainers = [
1111
]
1212
requires-python = ">=3.12"
1313
dependencies = [
14-
"django==5.1.4",
15-
"django-haystack==3.3.0",
16-
"djangorestframework==3.15.2",
14+
"django>=5.0.0,<6.0.0",
15+
"django-haystack>=3.0,<4.0.0",
16+
"djangorestframework>=3.0.0,<4.0.0",
1717
]
1818

1919
[project.urls]

uv.lock

+17-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)