We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b2fbe commit e1586f5Copy full SHA for e1586f5
.DS_Store
0 Bytes
.github/workflows/publish.yml
@@ -5,14 +5,8 @@ on:
5
6
jobs:
7
publish:
8
- # 03/27/23: it looks like there are issues with the tarballs for all python 3.6 versions
9
- # that are on ubuntu-22.04 (ubuntu-latest at the time). To maintain python compatibility
10
- # we're pinning ubuntu-20.04 so that we can properly run install python 3.6.
11
- #
12
- # As soon as this issue is addressed, we should put the image back to ubuntu-latest:
13
- # https://github.com/actions/setup-python/issues/544
14
name: Publish
15
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
16
env:
17
TARGET_URL: https://pypi.org/project/patch-api/
18
steps:
@@ -30,7 +24,7 @@ jobs:
30
24
- name: Setup Python
31
25
uses: actions/setup-python@e9aba2c848f5ebd159c070c61ea2c4e2b122355e # v2.3.4
32
26
with:
33
- python-version: "3.6"
27
+ python-version: "3.12"
34
28
35
29
- name: Run tests
36
0 commit comments