Skip to content

Commit

Permalink
Drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Jun 28, 2024
1 parent f345012 commit fdc73f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
os: [ubuntu-latest]
# os: [macos-14]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
"Intended Audience :: Science/Research",
]
dynamic = ["version", "dependencies"]
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { file = "LICENSE" }
readme = {file = "README.md", content-type='text/markdown'}

Expand Down Expand Up @@ -68,7 +68,7 @@ addopts = " --durations=0 --typeguard-packages=pynonthermal"

[tool.ruff]
line-length = 120
target-version = "py38"
target-version = "py39"
fix = true
show-fixes = true

Expand Down

0 comments on commit fdc73f5

Please sign in to comment.