Skip to content

Commit

Permalink
switch from pip-tools to uv in requirements (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas authored Apr 2, 2024
1 parent c811fae commit e1c0e02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- `.dockerignore` now uses a whitelist of files to include, rather than a blacklist. H/T to [@mhlut](https://github.com/mhlut) for the [inspiration](https://marijkeluttekes.dev/blog/articles/2024/03/18/smaller-docker-images-by-using-a-blanket-ignore/).
- Now using maximum Python version (3.12) throughout CI for repo.
- In `settings.py`, `SENTRY_DSN` now correctly using `environs.env.url` to validate the URL from the environment and passing the URL string to `sentry_sdk.init`.
- `uv` explicitly added to template's `requirements.in` file.

### Removed

- `pip-tools` has been removed from `requirements.in`, in favor of `uv`.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion src/django_twc_project/requirements.in.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ httpx
ipython
model_bakery
mypy
pip-tools
playwright
pre-commit
psycopg
Expand All @@ -48,6 +47,7 @@ pytest-xdist
ruff
sentry-sdk[django]
types-croniter
uv
{%- if include_weasyprint %}
weasyprint
{%- endif %}
Expand Down

0 comments on commit e1c0e02

Please sign in to comment.