-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into improvement/2056_in…
…itialize_things_once
- Loading branch information
Showing
10 changed files
with
332 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ jobs: | |
|
||
lint: | ||
name: Check style (lint) | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- run: sudo rm /etc/apt/sources.list.d/*.list | ||
- run: sudo apt update | ||
- run: sudo apt-get install libpq-dev | ||
|
@@ -16,9 +16,9 @@ jobs: | |
|
||
gitattributes: | ||
name: Check style (git-attributes) | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- run: sudo rm /etc/apt/sources.list.d/*.list | ||
- run: sudo apt update | ||
- run: sudo apt-get install libpq-dev | ||
|
@@ -27,7 +27,7 @@ jobs: | |
|
||
test-py: | ||
name: Test Python | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
services: | ||
# Label used to access the service container | ||
postgres: | ||
|
@@ -52,7 +52,7 @@ jobs: | |
- '3.11' | ||
- '3.12' | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- name: Set up Python v${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
|
@@ -76,9 +76,9 @@ jobs: | |
|
||
test-fed-data: | ||
name: Check federal data definitions | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- run: sudo rm /etc/apt/sources.list.d/*.list | ||
- run: sudo apt update | ||
- run: sudo apt-get install xsltproc | ||
|
@@ -93,24 +93,24 @@ jobs: | |
doc: | ||
name: Make and deploy documentation | ||
if: github.ref == 'refs/heads/master' | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | ||
- name: Make documentation | ||
run: | | ||
sudo rm /etc/apt/sources.list.d/*.list | ||
sudo apt update | ||
sudo apt-get install libpq-dev | ||
make doc-html | ||
- name: Deploy 🚀 | ||
uses: JamesIves/[email protected].3 | ||
uses: JamesIves/[email protected].8 | ||
with: | ||
branch: gh-pages # The branch the action should deploy to. | ||
folder: doc/build/html # The folder the action should deploy. | ||
|
||
build-and-publish: | ||
name: Build and publish Python 🐍 distributions 📦 to PyPI | ||
runs-on: ubuntu-22.04 | ||
runs-on: ubuntu-24.04 | ||
needs: [lint, gitattributes] | ||
steps: | ||
- uses: actions/checkout@master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.12.5-bullseye | ||
FROM python:3.13.0-bullseye | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.