Skip to content

Commit

Permalink
chore: enforce version constraints. (#679)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex <[email protected]>
  • Loading branch information
Alex-Izquierdo authored Feb 15, 2024
1 parent bb44026 commit 091de89
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 65 deletions.
66 changes: 17 additions & 49 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 15 additions & 16 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "aap-eda"
version = "0.1.0"
version = "0.2.0"
description = ""
authors = ["Red Hat, Inc. <[email protected]>"]
readme = "README.md"
Expand All @@ -27,28 +27,27 @@ dev = ["psycopg2-binary"]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
django = ">=4.2,<4.3"
djangorestframework = "*"
djangorestframework_simplejwt = "*"
dynaconf = ">=3.1"
drf-spectacular = "*"
channels = { version = "*", extras = ["daphne"] }
psycopg2 = { version = "*", optional = true }
djangorestframework = "3.14.*"
djangorestframework_simplejwt = "5.3.*"
dynaconf = ">=3.1.12,<3.3"
drf-spectacular = ">=0.26.5,<0.27"
channels = { version = "4.0.*", extras = ["daphne"] }
psycopg2 = { version = "2.9.*", optional = true }
psycopg2-binary = { version = "*", optional = true }
django-rq = "*"
rq = "*"
django-filter = "*"
pydantic = "*"
cryptography = "*"
kubernetes = "*"
podman = ">=4.5"
django-rq = ">=2.5,<2.9"
rq = ">=1.10.1,<1.14"
django-filter = ">23.2,<24"
pydantic = ">=1.8.1,<1.11"
cryptography = ">=38,<42"
kubernetes = "26.1.*"
podman = "4.9.*"
rq-scheduler = "^0.10"
django-ansible-base = { git = "https://github.com/ansible/django-ansible-base.git", tag = "2024.2.12", extras = [
"authentication",
"channel_auth",
] }
jinja2 = "*"
jinja2 = ">=3.1.3,<3.2"
django-split-settings = "^1.2.0"
ansible-core = "^2.16.2"

[tool.poetry.group.test.dependencies]
pytest = "*"
Expand Down

0 comments on commit 091de89

Please sign in to comment.