Skip to content

Commit

Permalink
Drop support for Python versions older than 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwardrop committed Nov 1, 2023
1 parent 13e43b7 commit bbf5055
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
max-parallel: 4
fail-fast: false
matrix:
python-version: ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
requires-python = ">=3.7"
dependencies = [
"decorator",
"future",
Expand Down Expand Up @@ -156,7 +157,7 @@ dependencies = [
tests = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=omniduct --cov-report=xml -vv {args:tests}"

[[tool.hatch.envs.test.matrix]]
python = ["27", "36", "37", "38", "39", "310", "311", "312"]
python = ["37", "38", "39", "310", "311", "312"]

[tool.hatch.envs.lint]
detached=true
Expand Down

0 comments on commit bbf5055

Please sign in to comment.