Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into bump_dictobjs
Browse files Browse the repository at this point in the history
  • Loading branch information
cisaacstern committed Nov 21, 2023
2 parents 2e77506 + 5e7bdfa commit 54d59ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9.13"] # consistent with Dockerfile
# the dockerfile will only run on the latest version of python3 as installed
# by apt-get, but these tests are very cheap so just keep an eye out for any
# potential issues as that version floats upward
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

RUN apt-get update && apt-get install -y python3 python3-pip
RUN python3 -m pip install pangeo-forge-runner
RUN python3 -m pip install "pangeo-forge-runner>=0.9.2"

COPY action/deploy_recipe.py /deploy_recipe.py
COPY entrypoint.sh /entrypoint.sh
Expand Down

0 comments on commit 54d59ed

Please sign in to comment.