This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into openai-instructor
- Loading branch information
Showing
26 changed files
with
776 additions
and
417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "sdRDM" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
description = "Software-driven RDM converts markdown data models into powerful objects that can be serialized to JSON, XML, YAML and HDF5" | ||
authors = ["Jan Range <[email protected]>"] | ||
license = "MIT License" | ||
|
@@ -9,8 +9,8 @@ packages = [{include = "sdRDM"}] | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
pydantic = "^2.5.3" | ||
pydantic-xml = "^2.7.0" | ||
pydantic = "^2.6.0" | ||
pydantic-xml = "^2.9.0" | ||
numpy = "^1.26.3" | ||
pandas = "^2.1.4" | ||
jinja2 = "^3.1.3" | ||
|
@@ -31,6 +31,7 @@ markdown-it-py = "^3.0.0" | |
rich = "^13.7.0" | ||
lxml = "^5.1.0" | ||
instructor = "^0.4.6" | ||
python-frontmatter = "^1.1.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
coverage = "^7.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from .datamodel import DataModel | ||
from .linker import Linker | ||
from ..tools.linker import Linker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.