Skip to content

Commit

Permalink
Restrict CI tests to newer Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dalito committed Jan 16, 2025
1 parent 28460b3 commit a0010fd
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 104 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.9", "3.10", "3.11", "3.12"] # re-enable when linkml-runtime has https://github.com/linkml/linkml-runtime/pull/357
python-version: ["3.11", "3.12"]
fail-fast: false

steps:
Expand Down
116 changes: 15 additions & 101 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ license = {text = "MIT"}
readme = "README.md"
include = ["README.md", "src/pid4cat_model/schema", "project"]

requires-python = ">=3.9"
requires-python = ">=3.11" # due to linkml-runtime bug, https://github.com/linkml/linkml-runtime/pull/357

dynamic = ["version"]

Expand Down Expand Up @@ -45,7 +45,7 @@ requires-poetry = ">=2.0"
version = "0.0.0"

[tool.poetry.dependencies]
python = ">=3.9,<4.0" # poetry needs an upper bound for locking
python = ">=3.11,<4.0" # poetry needs an upper bound for locking

[tool.poetry.requires-plugins]
poetry-dynamic-versioning = ">=1.6.0"
Expand Down

0 comments on commit a0010fd

Please sign in to comment.