Skip to content

Commit

Permalink
feat: bring back python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
onjin committed Oct 3, 2024
1 parent 4bb4403 commit 19f121d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down Expand Up @@ -47,7 +48,7 @@ dependencies = [
cov = 'pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=runenv --cov=tests'

[[tool.hatch.envs.test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]


[tool.coverage.run]
Expand Down

0 comments on commit 19f121d

Please sign in to comment.