Skip to content

Commit

Permalink
add the diifferent fixes for a sucessful deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
JessyBarrette committed Apr 11, 2024
1 parent 60779c2 commit 3589381
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion db-loader/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
url="",
packages=["cde_db_loader"],
install_requires=[
"pandas",
"pandas<2.0.0",
"sqlalchemy==1.4.16",
"psycopg2-binary",
"python-dotenv",
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
version: "3.3"
services:
db:
image: "$DOCKER_POSTGIS_REPO/postgis:13-3.1-alpine"
image: "postgis/postgis:13-3.1-alpine"
platform: linux/x86_64
ports:
- "${DB_PORT:-5432}:${DB_PORT:-5432}"
environment:
Expand Down
2 changes: 1 addition & 1 deletion download_scheduler/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
package_data={"download_scheduler": ["templates/*.j2"]},
include_package_data=True,
install_requires=[
"sqlalchemy",
"sqlalchemy<2.0.0",
"psycopg2-binary",
"sentry-sdk",
"python-dotenv",
Expand Down
2 changes: 1 addition & 1 deletion downloader/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
description="",
url="",
packages=["erddap_downloader"],
install_requires=["pandas", "erddapy", "shapely", "pdfkit"],
install_requires=["pandas<2.0.0", "erddapy", "shapely", "pdfkit"],
include_package_data=True,
)
2 changes: 1 addition & 1 deletion harvester/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
package_data={"": ["cde_to_goos_eov.json", "goos_eov_to_standard_name.json"]},
install_requires=[
"requests",
"pandas",
"pandas<2.0.0",
"erddapy",
"shapely",
"sqlalchemy",
Expand Down

0 comments on commit 3589381

Please sign in to comment.