Skip to content

Commit

Permalink
Fix image ID parsing in modern Docker (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
sritchie committed Jun 16, 2023
1 parent 56f96e7 commit 279d8ff
Show file tree
Hide file tree
Showing 12 changed files with 164 additions and 126 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.11
- name: Cache pip
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.11
- uses: pre-commit/action@v2.0.0
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.6'
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# pending

- #109:

- Upgrades `psycopg2-binary` and `pytest` to get tests passing again with
modern Python.

- Modifies `docker build` commands to get the built image ID via `--iidfile`
vs parsing the shell command output.

- adds `--platform linux/amd64` to `docker run` and `docker build` commands,
until we get support for `arm64` sorted out.

- fixes failure when GCP credentials aren't configured running in local mode.

# 0.4.1

Small release to archive for JOSS acceptance.
Expand Down

0 comments on commit 279d8ff

Please sign in to comment.