Skip to content

Commit

Permalink
fix(pyproject.toml): fix django and python version support
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehr-akbarzadeh committed Sep 30, 2024
1 parent da3dc5d commit 6e0a7e5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-sage-timezone"
version = "0.1.0"
version = "0.1.1"
description = "A project for timezone handling."
authors = ["Radin Ghahremani <radin@sageteam.org>","Sepehr Akbarzadeh <sepehr@sageteam.org>"]
readme = "README.md"
Expand All @@ -10,10 +10,13 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.11"
django-sage-tools = "^0.2.2"
pytz = "^2024.1"
django = "5.0.8"
python = ">=3.10,<4.0"
django = [
{ version = ">=4.2,<5.0", python = ">=3.8,<3.10"},
{ version = ">=4.2,<5.3", python = ">=3.10" } # Django 4.2 and 5.x for Python 3.10+
]

[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
Expand Down

0 comments on commit 6e0a7e5

Please sign in to comment.