-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(better-requirements): use uv pip compile and update several dep…
…endencies; remove black/isort from pre-commit update pre-commit hooks
- Loading branch information
1 parent
c7875d4
commit 9827fdc
Showing
8 changed files
with
452 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,8 @@ | |
}, | ||
"emmet.includeLanguages": { | ||
"django-html": "html" | ||
}, | ||
"files.associations": { | ||
"*.in": "pip-requirements" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
python-slugify==8.0.4 # https://github.com/un33k/python-slugify | ||
Pillow==10.2.0 # https://github.com/python-pillow/Pillow | ||
# rcssmin==1.1.0 --install-option="--without-c-extensions" # | ||
# https://github.com/ndparker/rcssmin | ||
# rcssmin==1.1.2 # https://github.com/ndparker/rcssmin | ||
argon2-cffi==23.1.0 # https://github.com/hynek/argon2_cffi | ||
shortuuid==1.0.13 # https://github.com/skorokithakis/shortuuid/ | ||
whitenoise==6.6.0 # https://github.com/evansd/whitenoise | ||
redis==5.0.3 # https://github.com/redis/redis-py | ||
celery==5.3.6 | ||
# receiptparser @ ../../receiptparser | ||
furl==2.1.3 | ||
|
||
# Django | ||
# ------------------------------------------------------------------------------ | ||
django==5.0.3 # https://www.djangoproject.com/ | ||
django-colorfield==0.11.0 # https://github.com/fabiocaccamo/django-colorfield | ||
django-environ==0.11.2 # https://github.com/joke2k/django-environ | ||
django-model-utils==4.4.0 # https://github.com/jazzband/django-model-utils | ||
django-allauth==0.61.1 # https://github.com/pennersr/django-allauth | ||
django-crispy-forms==2.1 # https://github.com/django-crispy-forms/django-crispy-forms | ||
crispy-bootstrap5==2024.2 # https://github.com/django-crispy-forms/crispy-bootstrap5 | ||
django-phonenumber-field[phonenumberslite]==7.3.0 # https://github.com/stefanfoulis/django-phonenumber-field | ||
django-compressor @ git+https://github.com/django-compressor/django-compressor.git # https://github.com/django-compressor/django-compressor | ||
django-redis==5.4.0 # https://github.com/jazzband/django-redis | ||
dj-database-url==2.1.0 # https://github.com/jazzband/dj-database-url/ | ||
django-constance[redis]==3.1.0 # https://github.com/jazzband/django-constance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
-r base.in | ||
|
||
Werkzeug[watchdog]==3.0.1 # https://github.com/pallets/werkzeug | ||
ipdb==0.13.13 # https://github.com/gotcha/ipdb | ||
psycopg[binary]==3.1.18 # https://github.com/psycopg/psycopg | ||
commitizen~=3.18.3 | ||
|
||
# Testing | ||
# ------------------------------------------------------------------------------ | ||
mypy<1.8.0 # https://github.com/python/mypy | ||
django-stubs[compatible-mypy]~=4.2.6 # https://github.com/typeddjango/django-stubs | ||
pytest~=8.1.1 # https://github.com/pytest-dev/pytest | ||
pytest-sugar~=1.0.0 # https://github.com/Frozenball/pytest-sugar | ||
types-python-slugify~=8.0.2.20240127 | ||
|
||
# Documentation | ||
# ------------------------------------------------------------------------------ | ||
sphinx==7.2.6 # https://github.com/sphinx-doc/sphinx | ||
sphinx-autobuild==2024.2.4 # https://github.com/GaretJax/sphinx-autobuild | ||
|
||
# Code quality | ||
# ------------------------------------------------------------------------------ | ||
# flake8==6.1.0 # https://github.com/PyCQA/flake8 | ||
# flake8-isort==6.1.1 # https://github.com/gforcada/flake8-isort | ||
ruff~=0.3.3 | ||
coverage~=7.4.4 # https://github.com/nedbat/coveragepy | ||
# black==23.11.0 # https://github.com/psf/black | ||
djlint~=1.34.1 # https://github.com/Riverside-Healthcare/djLint | ||
pylint-django~=2.5.5 # https://github.com/PyCQA/pylint-django | ||
pre-commit~=3.6.2 # https://github.com/pre-commit/pre-commit | ||
|
||
# Django | ||
# ------------------------------------------------------------------------------ | ||
factory-boy==3.3.0 # https://github.com/FactoryBoy/factory_boy | ||
|
||
django-debug-toolbar~=4.3.0 # https://github.com/jazzband/django-debug-toolbar | ||
django-extensions~=3.2.3 # https://github.com/django-extensions/django-extensions | ||
django-coverage-plugin~=3.1.0 # https://github.com/nedbat/django_coverage_plugin | ||
pytest-django~=4.8.0 # https://github.com/pytest-dev/pytest-django |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# PRECAUTION: avoid production dependencies that aren't in development | ||
|
||
-r base.in | ||
|
||
gunicorn~=21.2.0 # https://github.com/benoitc/gunicorn | ||
psycopg[c]~=3.1.13 # https://github.com/psycopg/psycopg | ||
hiredis~=2.2.3 # https://github.com/redis/hiredis-py | ||
|
||
# Django | ||
# ------------------------------------------------------------------------------ | ||
django-anymail[sendgrid]==10.2 # https://github.com/anymail/django-anymail |
Oops, something went wrong.