From b617b8ff3095146ae5b0ce0a20faf59282d7b0f3 Mon Sep 17 00:00:00 2001 From: Henrik Stranneheim Date: Tue, 5 Mar 2024 14:30:53 +0100 Subject: [PATCH 1/4] feat(sendmail.container): Remove (#80) ### Changed - Remove sendmail-container as it is not used. --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8b9b107..d268008 100644 --- a/requirements.txt +++ b/requirements.txt @@ -18,6 +18,5 @@ python-jose[cryptography] bcrypt numpy aiofiles -sendmail-container python-dotenv google-auth From dddc3b0197432235c877681a4d04b7e1440d5064 Mon Sep 17 00:00:00 2001 From: Clinical Genomics Bot Date: Tue, 5 Mar 2024 13:31:19 +0000 Subject: [PATCH 2/4] =?UTF-8?q?Bump=20version:=202.0.2=20=E2=86=92=202.0.3?= =?UTF-8?q?=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- genotype_api/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7540f9..d9a1830 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.2 +current_version = 2.0.3 commit = True tag = True tag_name = v{new_version} diff --git a/genotype_api/__init__.py b/genotype_api/__init__.py index 0309ae2..5fa9130 100644 --- a/genotype_api/__init__.py +++ b/genotype_api/__init__.py @@ -1 +1 @@ -__version__ = "2.0.2" +__version__ = "2.0.3" diff --git a/setup.py b/setup.py index 9f1ea87..d3cafd8 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="genotype_api", - version="2.0.2", + version="2.0.3", description="", long_description=long_description, long_description_content_type="text/markdown", From 3b9d944718260b15f560472eb27272107ebb4cd4 Mon Sep 17 00:00:00 2001 From: Henrik Stranneheim Date: Wed, 6 Mar 2024 09:18:08 +0100 Subject: [PATCH 3/4] fix(pydantic) (#81) ### Fixed - Missing imports --- requirements.txt | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/requirements.txt b/requirements.txt index d268008..3e66597 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,22 +1,26 @@ -click -pyyaml -coloredlogs -bump2version -pymysql -sqlmodel -openpyxl -SQLAlchemy==1.4.30 # server stuff -passlib +SQLAlchemy==1.4.30 +aiofiles +bcrypt +bump2version +click +coloredlogs +email-validator fastapi==0.75.0 -uvicorn -uvloop -httptools +google-auth gunicorn -python-jose[cryptography] -bcrypt +httptools numpy -aiofiles +openpyxl +passlib +pydantic==1.10.14 +pymysql python-dotenv -google-auth +python-jose[cryptography] +python-multipart +pyyaml +requests +sqlmodel +uvicorn +uvloop From ba109e38000606f5f91b70d367b2cca4f1890cf9 Mon Sep 17 00:00:00 2001 From: Clinical Genomics Bot Date: Wed, 6 Mar 2024 08:18:32 +0000 Subject: [PATCH 4/4] =?UTF-8?q?Bump=20version:=202.0.3=20=E2=86=92=202.0.4?= =?UTF-8?q?=20[skip=20ci]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- genotype_api/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d9a1830..7200908 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.3 +current_version = 2.0.4 commit = True tag = True tag_name = v{new_version} diff --git a/genotype_api/__init__.py b/genotype_api/__init__.py index 5fa9130..f6bb6f4 100644 --- a/genotype_api/__init__.py +++ b/genotype_api/__init__.py @@ -1 +1 @@ -__version__ = "2.0.3" +__version__ = "2.0.4" diff --git a/setup.py b/setup.py index d3cafd8..1619136 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="genotype_api", - version="2.0.3", + version="2.0.4", description="", long_description=long_description, long_description_content_type="text/markdown",