File tree Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Expand file tree Collapse file tree 2 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
build :
21
- runs-on : ubuntu-20 .04
21
+ runs-on : ubuntu-22 .04
22
22
strategy :
23
23
matrix :
24
24
python_version : [
25
- 3.9, # only lowest & highest version should be enough, :cross_fingers:
26
- # 3.10,
27
- # '3.11',
28
- ' 3.12'
29
- # pypy3 # didn't build on CI anymore, happy for help: https://github.com/gis-ops/routing-py/issues/60
25
+ ' 3.9' ,
26
+ ' 3.10' ,
27
+ ' 3.11' ,
28
+ ' 3.12' ,
29
+ ' 3.13'
30
+ # pypy3 # didn't build on CI anymore, happy for help: https://github.com/mthh/routingpy/issues/60
30
31
]
31
32
steps :
32
- - uses : actions/checkout@v3
33
+ - uses : actions/checkout@v4
33
34
34
35
- name : Set up Python ${{ matrix.python_version }}
35
36
uses : actions/setup-python@v4
36
37
with :
37
38
python-version : ${{ matrix.python_version }}
38
39
cache : pip
39
40
40
- - uses : actions/cache@v3
41
+ - uses : actions/cache@v4
41
42
with :
42
43
path : ~/.cache/pre-commit
43
44
key : pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build_wheels :
12
- runs-on : ubuntu-20 .04
12
+ runs-on : ubuntu-22 .04
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v4
15
15
16
16
- name : Set up Python 3.10
17
- uses : actions/setup-python@v2
17
+ uses : actions/setup-python@v4
18
18
with :
19
19
python-version : " 3.10"
20
20
24
24
python -m build --wheel
25
25
26
26
- name : Upload wheels
27
- uses : actions/upload-artifact@v2
27
+ uses : actions/upload-artifact@v4
28
28
with :
29
29
path : dist/*.whl
30
30
@@ -39,12 +39,12 @@ jobs:
39
39
python-version : " 3.10"
40
40
41
41
- name : Download artifact
42
- uses : actions/download-artifact@v2
42
+ uses : actions/download-artifact@v4
43
43
with :
44
44
name : artifact
45
45
path : dist
46
46
47
47
- uses : pypa/gh-action-pypi-publish@v1.4.2
48
48
with :
49
- user : nilsnolde
49
+ user : mthh
50
50
password : ${{ secrets.PYPI_PASS }}
You can’t perform that action at this time.
0 commit comments