Skip to content

Commit

Permalink
build: fix Python 3.12 and Django 5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodaher committed Dec 6, 2023
1 parent 96f66a6 commit fbedbd9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
28 changes: 14 additions & 14 deletions poetry.lock

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

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[tool.poetry]
name = "django-google-cloud-tasks"
version = "2.8.0"
version = "2.8.1"
description = "Async Tasks with HTTP endpoints"
authors = ["Joao Daher <[email protected]>"]
packages = [
{ include = "django_cloud_tasks" },
]

[tool.poetry.dependencies]
python = ">=3.11,<=3.12"
django = ">=4,<6"
gcp-pilot = {version = "*", extras = ["tasks", "pubsub"]}
drf-kit = "*"
python = "~3.11||~3.12"
Django = "~4||~5"
gcp-pilot = { version = ">=1.21.1", extras = ["tasks", "pubsub"]}
drf-kit = { version = ">=1.29.1" }


[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit fbedbd9

Please sign in to comment.