Skip to content

Commit

Permalink
allow old python
Browse files Browse the repository at this point in the history
  • Loading branch information
specialunderwear committed Dec 20, 2023
1 parent 227b508 commit 7b0082a
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 12 deletions.
82 changes: 74 additions & 8 deletions poetry.lock

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

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.8"
odin = "^2.9"
django-oscar = "^3.2"
coverage = { version = "^7.3", optional = true }
Expand All @@ -34,7 +34,7 @@ pylint-django = { version = "^2.5.5", optional = true }
isort = {version = "^5.13.2", optional = true}
ruff = {version = "^0.1.8", optional = true}
poetry = {version = "^1.7.1", optional = true}
pre-commit = {version = "^3.6.0", optional = true}
pre-commit = {version = "*", optional = true}


[tool.poetry.extras]
Expand Down Expand Up @@ -62,5 +62,5 @@ ignore = [
"C901", # too complex
]

# Assume Python 3.10.
target-version = "py310"
# Assume Python 3.8.
target-version = "py38"

0 comments on commit 7b0082a

Please sign in to comment.