Requirements pinning + some cleanup (#36)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #36 Reviewed-by: valberg <valberg@orn.li> Co-authored-by: Benjamin Bach <benjamin@overtag.dk> Co-committed-by: Benjamin Bach <benjamin@overtag.dk>
This commit is contained in:
parent
2c99799d4d
commit
f6d8f82065
|
@ -1,5 +1,5 @@
|
||||||
default_language_version:
|
default_language_version:
|
||||||
python: python3.12
|
python: python3
|
||||||
exclude: ^.*\b(migrations)\b.*$
|
exclude: ^.*\b(migrations)\b.*$
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
|
|
@ -12,17 +12,17 @@ authors = [
|
||||||
{ name = "Víðir Valberg Guðmundsson", email = "valberg@orn.li" },
|
{ name = "Víðir Valberg Guðmundsson", email = "valberg@orn.li" },
|
||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"Django==5.0.7",
|
"Django~=5.0",
|
||||||
"django-money==3.5.2",
|
"django-money~=3.5",
|
||||||
"django-allauth==0.63.6",
|
"django-allauth~=0.63",
|
||||||
"psycopg[binary]==3.2.1",
|
"psycopg[binary]~=3.2",
|
||||||
"environs[django]==11.0.0",
|
"environs[django]>=11,<12",
|
||||||
"uvicorn==0.30.1",
|
"uvicorn~=0.30",
|
||||||
"whitenoise==6.7.0",
|
"whitenoise~=6.7",
|
||||||
"django-zen-queries==2.1.0",
|
"django-zen-queries~=2.1",
|
||||||
"django-registries==0.0.3",
|
"django-registries==0.0.3",
|
||||||
"django-view-decorator==0.0.4",
|
"django-view-decorator==0.0.4",
|
||||||
"django-oauth-toolkit==2.4.0",
|
"django-oauth-toolkit~=2.4",
|
||||||
]
|
]
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ matrix.python.dependencies = [
|
||||||
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src --cov=tests --cov=append {args}"
|
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src --cov=tests --cov=append {args}"
|
||||||
no-cov = "cov --no-cov {args}"
|
no-cov = "cov --no-cov {args}"
|
||||||
typecheck = "mypy --config-file=pyproject.toml ."
|
typecheck = "mypy --config-file=pyproject.toml ."
|
||||||
requirements = "pip-compile --output-file requirements/base.txt pyproject.toml"
|
requirements = "pip-compile pyproject.toml"
|
||||||
server = "./src/manage.py runserver 0.0.0.0:8000"
|
server = "./src/manage.py runserver 0.0.0.0:8000"
|
||||||
migrate = "./src/manage.py migrate"
|
migrate = "./src/manage.py migrate"
|
||||||
makemigrations = "./src/manage.py makemigrations"
|
makemigrations = "./src/manage.py makemigrations"
|
||||||
|
|
|
@ -1,19 +1,9 @@
|
||||||
#
|
#
|
||||||
# This file is autogenerated by hatch-pip-compile with Python 3.12
|
# This file is autogenerated by pip-compile with Python 3.12
|
||||||
|
# by the following command:
|
||||||
#
|
#
|
||||||
# - django-allauth==0.63.6
|
# pip-compile pyproject.toml
|
||||||
# - django-money==3.5.2
|
|
||||||
# - django-oauth-toolkit==2.4.0
|
|
||||||
# - django-registries==0.0.3
|
|
||||||
# - django-view-decorator==0.0.4
|
|
||||||
# - django-zen-queries==2.1.0
|
|
||||||
# - django==5.0.7
|
|
||||||
# - environs[django]==11.0.0
|
|
||||||
# - psycopg[binary]==3.2.1
|
|
||||||
# - uvicorn==0.30.1
|
|
||||||
# - whitenoise==6.7.0
|
|
||||||
#
|
#
|
||||||
|
|
||||||
asgiref==3.8.1
|
asgiref==3.8.1
|
||||||
# via django
|
# via django
|
||||||
babel==2.15.0
|
babel==2.15.0
|
||||||
|
@ -34,7 +24,6 @@ dj-email-url==1.0.6
|
||||||
# via environs
|
# via environs
|
||||||
django==5.0.7
|
django==5.0.7
|
||||||
# via
|
# via
|
||||||
# hatch.envs.default
|
|
||||||
# dj-database-url
|
# dj-database-url
|
||||||
# django-allauth
|
# django-allauth
|
||||||
# django-money
|
# django-money
|
||||||
|
@ -42,22 +31,25 @@ django==5.0.7
|
||||||
# django-registries
|
# django-registries
|
||||||
# django-view-decorator
|
# django-view-decorator
|
||||||
# django-zen-queries
|
# django-zen-queries
|
||||||
|
# membersystem (pyproject.toml)
|
||||||
django-allauth==0.63.6
|
django-allauth==0.63.6
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
django-cache-url==3.4.5
|
django-cache-url==3.4.5
|
||||||
# via environs
|
# via environs
|
||||||
django-money==3.5.2
|
django-money==3.5.2
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
django-oauth-toolkit==2.4.0
|
django-oauth-toolkit==2.4.0
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
django-registries==0.0.3
|
django-registries==0.0.3
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
django-view-decorator==0.0.4
|
django-view-decorator==0.0.4
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
django-zen-queries==2.1.0
|
django-zen-queries==2.1.0
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
environs==11.0.0
|
environs[django]==11.0.0
|
||||||
# via hatch.envs.default
|
# via
|
||||||
|
# environs
|
||||||
|
# membersystem (pyproject.toml)
|
||||||
h11==0.14.0
|
h11==0.14.0
|
||||||
# via uvicorn
|
# via uvicorn
|
||||||
idna==3.7
|
idna==3.7
|
||||||
|
@ -70,8 +62,10 @@ oauthlib==3.2.2
|
||||||
# via django-oauth-toolkit
|
# via django-oauth-toolkit
|
||||||
packaging==24.1
|
packaging==24.1
|
||||||
# via marshmallow
|
# via marshmallow
|
||||||
psycopg==3.2.1
|
psycopg[binary]==3.2.1
|
||||||
# via hatch.envs.default
|
# via
|
||||||
|
# membersystem (pyproject.toml)
|
||||||
|
# psycopg
|
||||||
psycopg-binary==3.2.1
|
psycopg-binary==3.2.1
|
||||||
# via psycopg
|
# via psycopg
|
||||||
py-moneyed==3.0
|
py-moneyed==3.0
|
||||||
|
@ -95,9 +89,9 @@ typing-extensions==4.12.2
|
||||||
urllib3==2.2.2
|
urllib3==2.2.2
|
||||||
# via requests
|
# via requests
|
||||||
uvicorn==0.30.1
|
uvicorn==0.30.1
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
whitenoise==6.7.0
|
whitenoise==6.7.0
|
||||||
# via hatch.envs.default
|
# via membersystem (pyproject.toml)
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
# The following packages are considered to be unsafe in a requirements file:
|
||||||
# setuptools
|
# setuptools
|
||||||
|
|
|
@ -11,17 +11,17 @@
|
||||||
# - django-debug-toolbar==4.2.0
|
# - django-debug-toolbar==4.2.0
|
||||||
# - django-browser-reload==1.7.0
|
# - django-browser-reload==1.7.0
|
||||||
# - model-bakery==1.17.0
|
# - model-bakery==1.17.0
|
||||||
# - django-allauth==0.63.6
|
# - django-allauth~=0.63
|
||||||
# - django-money==3.5.2
|
# - django-money~=3.5
|
||||||
# - django-oauth-toolkit==2.4.0
|
# - django-oauth-toolkit~=2.4
|
||||||
# - django-registries==0.0.3
|
# - django-registries==0.0.3
|
||||||
# - django-view-decorator==0.0.4
|
# - django-view-decorator==0.0.4
|
||||||
# - django-zen-queries==2.1.0
|
# - django-zen-queries~=2.1
|
||||||
# - django==5.0.7
|
# - django~=5.0
|
||||||
# - environs[django]==11.0.0
|
# - environs[django]<12,>=11
|
||||||
# - psycopg[binary]==3.2.1
|
# - psycopg[binary]~=3.2
|
||||||
# - uvicorn==0.30.1
|
# - uvicorn~=0.30
|
||||||
# - whitenoise==6.7.0
|
# - whitenoise~=6.7
|
||||||
#
|
#
|
||||||
|
|
||||||
asgiref==3.8.1
|
asgiref==3.8.1
|
||||||
|
|
Loading…
Reference in a new issue