Skip to content

Commit

Permalink
Turning off python 3.6 in pyproject.toml since it is no longer suppor…
Browse files Browse the repository at this point in the history
…ted (by github, or poetry, or by python).
  • Loading branch information
cyface committed Jan 4, 2023
1 parent 2720edf commit 7979159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.black]
line-length = 88
target-version = ['py36', 'py37', 'py38']
target-version = ['py37', 'py38', 'py39', 'py310']
include = '\.pyi?$'
exclude = '''
/(
Expand Down Expand Up @@ -50,7 +50,7 @@ readme = "README.md"
version = "2.0.11"

[tool.poetry.dependencies]
python = ">=3.6,<4.0"
python = ">=3.7,<4.0"
Django = ">2.2"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit 7979159

Please sign in to comment.