Skip to content

Commit

Permalink
Merge pull request #120 from GreenBankObservatory/release-0.2.0-drop-…
Browse files Browse the repository at this point in the history
…py38-add-py312

Drop support for Python 3.8; add support for Python 3.12
  • Loading branch information
mpound authored Nov 20, 2023
2 parents 0ecc654 + 4acb667 commit 3dd109c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hatch-and-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
Expand Down Expand Up @@ -81,7 +82,7 @@ cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/dy

# Run tests across all supported version of Python
[[tool.hatch.envs.test.matrix]]
python = ["38", "39", "310", "311"]
python = ["39", "310", "311", "312"]

[tool.hatch.build.targets.sdist]
include = ["/src", "/tests", "/bin"]
Expand Down

0 comments on commit 3dd109c

Please sign in to comment.