Skip to content

Commit

Permalink
Merge pull request #128 from gis-ops/cb-py-update
Browse files Browse the repository at this point in the history
try python 3.12, phase out 3.8
  • Loading branch information
chrstnbwnkl committed Jun 7, 2024
2 parents c269fd3 + 78dd19b commit 7d7382e
Show file tree
Hide file tree
Showing 6 changed files with 1,274 additions and 1,169 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
strategy:
matrix:
python_version: [
3.8, # only lowest & highest version should be enough, :cross_fingers:
# 3.9,
# '3.10',
'3.11'
3.9, # only lowest & highest version should be enough, :cross_fingers:
# 3.10,
# '3.11',
'3.12'
# pypy3 # didn't build on CI anymore, happy for help: https://github.com/gis-ops/routing-py/issues/60
]
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Publish wheels
on:
push:
branches-ignore:
- '*'
- "*"
tags:
- '*'
- "*"

jobs:
build_wheels:
Expand All @@ -16,7 +16,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: "3.10"

- name: Build Wheels
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: "3.10"

- name: Download artifact
uses: actions/download-artifact@v2
Expand Down
Loading

0 comments on commit 7d7382e

Please sign in to comment.