Skip to content

Commit

Permalink
Merge pull request #165 from QGEP/poa_update_ubuntu_and_python
Browse files Browse the repository at this point in the history
update ubuntu and python
  • Loading branch information
ponceta authored Oct 10, 2024
2 parents 6acb012 + 473f38c commit b34e965
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/interlis-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ on:
jobs:
interlis-tests:
name: Interlis-tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
suite: ["qgep", "qwat"]
postgis:
- postgis/postgis:13-3.2
- postgis/postgis:12-3.0
- postgis/postgis:13-3.4
- postgis/postgis:12-3.4

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v2
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12

- name: Install python deps
run: pip install -r requirements.txt
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:

name: Release to Pypi

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:

- uses: actions/checkout@master
- uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.12

- name: Inject version name
run: sed -i "s/999\.dev0/${GITHUB_REF##*/}/" setup.py
Expand All @@ -32,7 +32,7 @@ jobs:

- name: Publish distribution
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@v1.4.2
uses: pypa/gh-action-pypi-publish@v1.10.3
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit b34e965

Please sign in to comment.