From 82e7fffdf7bb9cdd489e19d26d9604829e8030d6 Mon Sep 17 00:00:00 2001 From: Kevin Schaper Date: Tue, 19 Oct 2021 12:15:51 -0700 Subject: [PATCH 1/4] Updating biolink-model-pydantic requirement to be anything from 0.1.1 to less than 0.2.0. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8f3c57d..b280534 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ "Operating System :: POSIX :: Linux", ] requires = [ - "biolink_model_pydantic >=0.0.5,<0.1.0", + "biolink_model_pydantic >=0.1.1, <0.2.0", "kgx >= 1.0.0", "pydantic >=1.0.0,<2.0.0", "pyyaml >=5.3.1,<6.0.0", From 3c9c745005667314c105acf1bbc3863d1a965d16 Mon Sep 17 00:00:00 2001 From: Kevin Schaper Date: Tue, 19 Oct 2021 12:19:41 -0700 Subject: [PATCH 2/4] Also bumping the koza version number so that I can release the change. --- koza/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koza/__init__.py b/koza/__init__.py index 286e6ac..c7f3e91 100644 --- a/koza/__init__.py +++ b/koza/__init__.py @@ -1,2 +1,2 @@ """Koza, an ETL framework for the Biolink model""" -__version__ = '0.1.0' +__version__ = '0.1.1' From 5cb65251a6ac12c091c7f2fb84eff4f8a6b6b5e9 Mon Sep 17 00:00:00 2001 From: Kevin Schaper Date: Tue, 26 Oct 2021 10:42:55 -0700 Subject: [PATCH 3/4] moved biolink-model-pydantic to a dev dependency --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9cae37e..ae97bb4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,6 @@ classifiers = [ "Operating System :: POSIX :: Linux", ] requires = [ - "biolink_model_pydantic >=0.1.1, <0.2.0", "kgx >= 1.0.0", "pydantic >=1.0.0,<2.0.0", "pyyaml >=5.3.1,<6.0.0", @@ -40,6 +39,7 @@ doc = [ "mkdocs >=1.1.2,<2.0.0", ] dev = [ + "pydantic >=1.0.0,<2.0.0", "autoflake >=1.3.1,<2.0.0", "flake8 >=3.8.3,<4.0.0", "black ==20.8b1", From 0c86d49a79bd35eaf250d9d6c22ad601378d4e9e Mon Sep 17 00:00:00 2001 From: Kevin Schaper Date: Tue, 26 Oct 2021 10:47:57 -0700 Subject: [PATCH 4/4] actually moved biolink-model-pydantic to a dev dependency (copy/paste mishap in the last commit) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ae97bb4..c11e335 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ doc = [ "mkdocs >=1.1.2,<2.0.0", ] dev = [ - "pydantic >=1.0.0,<2.0.0", + "biolink-model-pydantic >=0.1.1,<1.0.0", "autoflake >=1.3.1,<2.0.0", "flake8 >=3.8.3,<4.0.0", "black ==20.8b1",