Skip to content

Commit

Permalink
Update minimum python to 3.10 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanluoyc authored May 7, 2024
1 parent d3202f1 commit 412e4b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.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]
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down
26 changes: 1 addition & 25 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ build-backend = "pdm.backend"
name = "lxm3"
description = 'LXM3: XManager launch backend for HPC clusters'
readme = "README.md"
requires-python = ">=3.9,<3.13"
requires-python = ">=3.10,<3.13"
license = {text = "MIT"}
keywords = ["machine-learning", "hpc", "packaging", "singularity"]
authors = [{ name = "Yicheng Luo", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
dynamic = ["version"]
Expand Down Expand Up @@ -143,7 +143,7 @@ ignore = [
reportMissingImports = true
reportMissingTypeStubs = false

pythonVersion = "3.9"
pythonVersion = "3.10"
pythonPlatform = "Linux"

[tool.pytest.ini_options]
Expand Down

0 comments on commit 412e4b8

Please sign in to comment.