Skip to content

Commit d8e821e

Browse files
committed
python versione error fix for CI/CD
1 parent a95b899 commit d8e821e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.10", "3.11"]
14+
python-version: ["3.10"]
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ readme = "README.md"
88

99

1010
[tool.poetry.dependencies]
11-
python = "^3.10"
12-
owlready2 = "^0.45"
13-
rdflib = "^7.0.0"
14-
Flask = "^3.0.2"
15-
pytest = "^8.0.0"
11+
python = ">=3.10,<3.11"
12+
owlready2 = "^0.46"
13+
rdflib = "^7.5.0"
14+
Flask = "^3.0.3"
15+
pytest = "^8.3.0"
1616
PyYAML = "^6.0.1"
1717

1818

0 commit comments

Comments
 (0)