Merge branch 'main' of git.data.coop:data.coop/membersystem into membership-invite
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
Benjamin Bach 2024-08-12 00:12:25 +02:00
commit f048e37c07
No known key found for this signature in database
GPG key ID: 486F0D69C845416E

View file

@ -12,20 +12,21 @@ 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.1b1,<5.2", "Django~=5.1",
"django-money~=3.5",
"django-allauth~=0.63", "django-allauth~=0.63",
"psycopg[binary]~=3.2", "django-money~=3.5",
"environs[django]>=11,<12", "django-oauth-toolkit~=2.4",
"uvicorn~=0.30",
"whitenoise~=6.7",
"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", "django-oauth-toolkit~=2.4",
"django-ratelimit~=4.1", "django-ratelimit~=4.1",
"django-zen-queries~=2.1",
"django_stubs_ext~=5.0", "django_stubs_ext~=5.0",
"environs[django]>=11,<12",
"psycopg[binary]~=3.2",
"stripe~=10.5", "stripe~=10.5",
"uvicorn~=0.30",
"whitenoise~=6.7",
] ]
version = "0.0.1" version = "0.0.1"
@ -57,15 +58,12 @@ dependencies = [
[[tool.hatch.envs.tests.matrix]] [[tool.hatch.envs.tests.matrix]]
python = ["3.12"] python = ["3.12"]
django = ["5.1b1"] django = ["5.1"]
[tool.hatch.envs.tests.overrides] [tool.hatch.envs.tests.overrides]
matrix.django.dependencies = [ matrix.django.dependencies = [
{ value = "django~={matrix:django}" }, { value = "django~={matrix:django}" },
] ]
matrix.python.dependencies = [
{ value = "typing_extensions==4.5.0", if = ["3.10"]},
]
[tool.hatch.envs.default.scripts] [tool.hatch.envs.default.scripts]
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}"