Skip to content

Commit

Permalink
Require Python 3.9.
Browse files Browse the repository at this point in the history
We using syntax which is not available in Python 3.6, 3.7 nor 3.9.  For
instance, the union operator for dicts.
  • Loading branch information
mvaled committed Nov 23, 2021
1 parent 3dd5028 commit e817da4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ url = https://github.com/edelvalle/djhtmx
zip_safe = False
packages = find:
include_package_data = True
python_requires = >=3.6
python_requires = >=3.9
install_requires =
pydantic>=1.8,<2
django
Expand Down
7 changes: 2 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
[tox]
envlist =
{3.6,3.7,3.8,3.9,3.10}-unit
3.6-{lint,staticcheck,doctest,coverage}
{3.9,3.10}-unit
3.9-{lint,staticcheck,doctest,coverage}


[testenv]
basepython=
3.6: python3.6
3.7: python3.7
3.8: python3.8
3.9: python3.9
3.10: python3.10
system: python
Expand Down

0 comments on commit e817da4

Please sign in to comment.