Skip to content

Commit c255d47

Browse files
committed
💥 🔖 v1.0.0
1 parent 97e46e1 commit c255d47

File tree

3 files changed

+24
-16
lines changed

3 files changed

+24
-16
lines changed

ontolearner/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.5.0"
1+
__version__ = "1.0.0"
22

33
import logging
44

pyproject.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "OntoLearner"
3-
version = "0.5.0"
4-
description = "OntoLearner: Ontology Learning Framework."
3+
version = "1.0.0"
4+
description = "OntoLearner: A Modular Python Library for Ontology Learning with LLMs."
55
authors = ["Hamed Babaei Giglou <hamedbabaeigiglou@gmail.com>", "Andrei C. Aioanei <andrei.c.aioanei@gmail.com>"]
66
license = "MIT License"
77
readme = "README.md"
@@ -14,15 +14,19 @@ python = ">=3.9,<3.13.0"
1414
rdflib ="7.1.1"
1515
networkx ="3.2.1"
1616
seaborn="0.13.2"
17-
numpy="1.26.4"
18-
pandas="2.1.1"
19-
matplotlib="3.9.4"
17+
numpy="2.2.4"
18+
pandas="2.2.3"
19+
matplotlib="3.10.0"
2020
tqdm="4.67.1"
21-
pydantic="2.10.5"
21+
pydantic="2.11.3"
2222
pathlib="1.0.1"
23-
dspy="2.6.22"
23+
dspy="2.6.14"
2424
python-dotenv="1.1.0"
2525
huggingface-hub="0.27.1"
26+
transformers="4.51.3"
27+
torch="2.7.0"
28+
sentence-transformers="4.1.0"
29+
scikit-learn="1.6.1"
2630

2731
[tool.poetry.dev-dependencies]
2832
ruff = "*"

setup.py

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
setup(
77
name="OntoLearner",
8-
version="0.5.0",
8+
version="0.1.0",
99
author="Hamed Babaei Giglou, Andrei C. Aioanei",
1010
author_email="hamedbabaeigiglou@gmail.com, andrei.c.aioanei@gmail.com",
11-
description="OntoLearner: Ontology Learning Framework",
11+
description="OntoLearner: A Modular Python Library for Ontology Learning with LLMs.",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/sciknoworg/OntoLearner",
@@ -17,15 +17,19 @@
1717
"rdflib==7.1.1",
1818
"networkx==3.2.1",
1919
"seaborn==0.13.2",
20-
"numpy==1.26.4",
21-
"pandas==2.1.1",
22-
"matplotlib==3.9.4",
20+
"numpy==2.2.4",
21+
"pandas==2.2.3",
22+
"matplotlib==3.10.0",
2323
"tqdm==4.67.1",
24-
"pydantic==2.10.5",
24+
"pydantic==2.11.3",
2525
"pathlib==1.0.1",
26-
"dspy==2.6.22",
26+
"dspy==2.6.14",
2727
"huggingface-hub==0.27.1",
28-
"python-dotenv==1.1.0"
28+
"python-dotenv==1.1.0",
29+
"transformers==4.51.3",
30+
"torch==2.7.0",
31+
"sentence-transformers==4.1.0",
32+
"scikit-learn==1.6.1"
2933
],
3034
classifiers=[
3135
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)