Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CD_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
CLOUD_SQL_USER: "${{ secrets.CLOUD_SQL_USER }}"
CLOUD_SQL_IAM_AUTH: true
run: |
uv run alembic upgrade head
uv run --no-dev alembic upgrade head

- name: Refresh materialized views on production database
env:
Expand All @@ -71,7 +71,7 @@ jobs:
CLOUD_SQL_USER: "${{ secrets.CLOUD_SQL_USER }}"
CLOUD_SQL_IAM_AUTH: true
run: |
uv run python -m cli.cli refresh-pygeoapi-materialized-views
uv run --no-dev python -m cli.cli refresh-pygeoapi-materialized-views

- name: Ensure envsubst is available
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CD_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
CLOUD_SQL_USER: "${{ secrets.CLOUD_SQL_USER }}"
CLOUD_SQL_IAM_AUTH: true
run: |
uv run alembic upgrade head
uv run --no-dev alembic upgrade head

- name: Refresh materialized views on staging database
env:
Expand All @@ -54,7 +54,7 @@ jobs:
CLOUD_SQL_USER: "${{ secrets.CLOUD_SQL_USER }}"
CLOUD_SQL_IAM_AUTH: true
run: |
uv run python -m cli.cli refresh-pygeoapi-materialized-views
uv run --no-dev python -m cli.cli refresh-pygeoapi-materialized-views

- name: Ensure envsubst is available
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CD_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
CLOUD_SQL_USER: "${{ secrets.CLOUD_SQL_USER }}"
CLOUD_SQL_IAM_AUTH: true
run: |
uv run alembic upgrade head
uv run --no-dev alembic upgrade head

- name: Refresh materialized views on staging database
env:
Expand All @@ -54,7 +54,7 @@ jobs:
CLOUD_SQL_USER: "${{ secrets.CLOUD_SQL_USER }}"
CLOUD_SQL_IAM_AUTH: true
run: |
uv run python -m cli.cli refresh-pygeoapi-materialized-views
uv run --no-dev python -m cli.cli refresh-pygeoapi-materialized-views

- name: Ensure envsubst is available
run: |
Expand Down
2 changes: 1 addition & 1 deletion docker/app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN if [ "$INSTALL_DEV" = "true" ]; then \
uv sync --locked --all-groups; \
else \
echo "Installing only production dependencies..." && \
uv sync --locked; \
uv sync --locked --no-dev; \
fi

# expose FastAPI's default dev port
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ dependencies = [
"phonenumbers==9.0.32",
"pillow==12.2.0",
"pluggy==1.6.0",
"pre-commit==4.6.0",
"propcache==0.5.2",
"proto-plus==1.28.0",
"protobuf==6.33.5",
Expand All @@ -76,8 +75,6 @@ dependencies = [
"pygeoapi==0.23.4",
"pyproj==3.7.2",
"pyshp==2.3.1",
"pytest==9.0.3",
"pytest-cov==6.2.1",
"python-dateutil==2.9.0.post0",
"python-jose>=3.5.0",
"python-multipart==0.0.27",
Expand Down Expand Up @@ -137,8 +134,10 @@ dev = [
"black>=26.5.1",
"faker>=25.0.0",
"flake8>=7.3.0",
"pre-commit>=4.6.0",
Comment thread
jirhiker marked this conversation as resolved.
"pyhamcrest>=2.0.3",
"pytest>=9.0.3",
"pytest-cov>=6.2.1",
"python-dotenv>=1.1.1",
"requests>=2.34.2",
]
Expand Down
981 changes: 122 additions & 859 deletions requirements.txt

Large diffs are not rendered by default.

12 changes: 5 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading