Skip to content

Commit

Permalink
Drop Python 3.6 #1314
Browse files Browse the repository at this point in the history
  • Loading branch information
dennissiemensma committed Oct 20, 2021
1 parent eeda0d2 commit 9ba5eaa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ jobs:
strategy:
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
Expand Down
2 changes: 1 addition & 1 deletion check_python_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

# EOL table @ https://www.python.org/downloads/
MINIMUM_VERSION = (3, 6, 0)
MINIMUM_VERSION = (3, 7, 0)
PREFERRED_MINIMUM_VERSION = (3, 7, 0)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ homepage = "https://dsmr-reader.readthedocs.io/"


[tool.poetry.dependencies]
python = "^3.6 || ^3.7 || ^3.8 || ^3.9"
python = "^3.7 || ^3.8 || ^3.9"

autopep8 = "^1.5"
coreapi = "^2.3"
Expand Down

0 comments on commit 9ba5eaa

Please sign in to comment.