From a86a5445687aed673a5f0f38cc1412c5b74c1d98 Mon Sep 17 00:00:00 2001 From: Kelly Lockhart <2926089+kelockhart@users.noreply.github.com> Date: Fri, 19 Dec 2025 13:08:20 -0500 Subject: [PATCH 1/2] Bumped adsputils to 1.5.15 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8f54cd7..de5b267 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ git+https://github.com/adsabs/adsabs-pyingest.git@v1.0.10 -adsputils==v1.2.8 +adsputils==v1.5.15 alembic==0.9.1 numpy==1.15.0 psycopg2==2.8.6 From b851ac8cc1744bd4a4deb1b1905a755c2a6d12d9 Mon Sep 17 00:00:00 2001 From: Kelly Lockhart <2926089+kelockhart@users.noreply.github.com> Date: Mon, 22 Dec 2025 14:46:58 -0500 Subject: [PATCH 2/2] Updated postgres call --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 1228abe..9532223 100644 --- a/config.py +++ b/config.py @@ -6,7 +6,7 @@ ] #SQLALCHEMY_URL = 'sqlite:///' -SQLALCHEMY_URL = 'postgres://user:password@localhost:15432/import_pipeline' +SQLALCHEMY_URL = 'postgresql://user:password@localhost:15432/import_pipeline' SQLALCHEMY_ECHO = False CELERY_INCLUDE = ['aip.tasks']