Skip to content

Commit 031a280

Browse files
fix ! tweaks (#132)
1 parent bbe3ce9 commit 031a280

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ COPY uv.lock README.md MANIFEST.in pyproject.toml /app/
8181
COPY src /app/src/
8282

8383
RUN --mount=type=cache,target=/root/.uv-cache \
84-
find ../src -name 'node_modules' -prune \
84+
find ./src -name 'node_modules' -prune \
8585
-o -name *.py -o -name *.html -o -name *.js -o -name *.css \
8686
-type f \
8787
-exec ls -l "{}" \; | sha1sum | awk '{print $1}' > CODE_CHECKSUM \

manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from pathlib import Path
55

6-
SRC = Path.resolve("src")
6+
SRC = Path("src").resolve()
77
sys.path.insert(0, SRC)
88

99
if __name__ == "__main__":

pyproject.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -57,47 +57,47 @@ dependencies = [
5757
]
5858
scripts.celery-monitor = "country_workspace.__monitor__:run"
5959

60-
[uv]
61-
package = true
62-
63-
[dependencies-groups]
60+
[dependency-groups]
6461
dev = [
6562
"bump2version>=1.0.1",
6663
"djade>=1.3.2",
67-
"django-browser-reload>=1.17.0",
64+
"django-browser-reload>=1.17",
6865
"django-webtest>=1.9.11",
69-
"factory-boy>=3.3.0",
66+
"factory-boy>=3.3",
7067
"freezegun>=1.5.1",
71-
"ipython>=8.29.0",
68+
"ipython>=8.29",
7269
"mypy>=1.11.2",
7370
"pdbpp>=0.10.3",
7471
"pip>=24.3.1",
7572
"pre-commit>=3.7.1",
7673
"pyquery>=2.0.1",
77-
"pytest-celery>=1.0.0",
78-
"pytest-coverage>=0.0",
79-
"pytest-django>=4.8.0",
74+
"pytest>=8.2.2",
75+
"pytest-celery>=1",
76+
"pytest-coverage>=0",
77+
"pytest-django>=4.8",
8078
"pytest-echo>=1.7.3",
81-
"pytest-factoryboy>=2.7.0",
82-
"pytest-mock>=3.14.0",
79+
"pytest-factoryboy>=2.7",
80+
"pytest-mock>=3.14",
8381
"pytest-recording>=0.13.2",
8482
"pytest-xdist>=3.6.1",
85-
"pytest>=8.2.2",
8683
"responses>=0.25.3",
84+
"ruff>=0.9.3",
85+
"seleniumbase>=4.35.7",
8786
"types-python-dateutil>=2.9.0.20241003",
8887
"types-requests>=2.31.0.6",
8988
"vcrpy>=6.0.2",
90-
"ruff>=0.9.3",
91-
"seleniumbase>=4.35.7",
9289
]
9390

9491
docs = [
9592
"mkdocs>=1.6.1",
96-
"mkdocs-material>=9.5.36",
9793
"mkdocs-awesome-pages-plugin>=2.9.3",
94+
"mkdocs-gen-files>=0.5",
95+
"mkdocs-material>=9.5.36",
9896
"mkdocstrings-python",
99-
"mkdocs-gen-files>=0.5.0",
10097
]
10198

99+
[uv]
100+
package = true
101+
102102
[tool.django-stubs]
103103
django_settings_module = "country_workspace.config.settings"

0 commit comments

Comments
 (0)