Skip to content

Commit

Permalink
chore: specify python support in pyproject.toml, update ci
Browse files Browse the repository at this point in the history
* ci test with python 3.8-3.12
* drop 3.7 since it's EOL
  • Loading branch information
wpbonelli committed Mar 9, 2024
1 parent ee0cf1b commit 3fc822b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout code
Expand Down
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ requires = [
]
build-backend = "setuptools.build_meta"

[project]
name = "fprettify"
description = "auto-formatter for modern fortran source code"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"

[tool.setuptools_scm]
write_to = "fprettify/_version.py"

Expand Down

0 comments on commit 3fc822b

Please sign in to comment.