Skip to content

Commit ab73437

Browse files
committed
📝 versioning
1 parent 69fb447 commit ab73437

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: .github/workflows/python-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.10"
2121

2222
- name: Install Poetry
2323
run: |

Diff for: ontoaligner/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = "0.1.0"
2+
__version__ = "1.0.0"
33

44
from .pipeline import Pipeline

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage = "https://ontoaligner.readthedocs.io/"
99
repository = "https://github.com/sciknoworg/OntoAligner/"
1010

1111
[tool.poetry.dependencies]
12-
python = ">=3.9"
12+
python = ">=3.10,<4.0.0"
1313
pathlib = "*"
1414
argparse = "*"
1515
numpy = "*"

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"License :: OSI Approved :: MIT License",
4242
"Operating System :: OS Independent",
4343
],
44-
python_requires=">=3.10",
44+
python_requires=">=3.10,<4.0.0",
4545
project_urls={
4646
"Documentation": "https://ontoaligner.readthedocs.io/",
4747
"Source": "https://github.com/sciknoworg/OntoAligner",

0 commit comments

Comments
 (0)