Skip to content

Commit c229716

Browse files
committed
fix: Bump versions in the release workflow.
The newest upstream workflows don't work with such an old version of python and we should just use `ubuntu-latest` for the worker version.
1 parent 0c5e04d commit c229716

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/pypi-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ on:
77
jobs:
88

99
push:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4
1515
- name: setup python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.5
18+
python-version: 3.11
1919

2020
- name: Install pip
2121
run: pip install pip

codejail/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""init"""
22

3-
__version__ = '3.5.0'
3+
__version__ = '3.5.1'

0 commit comments

Comments
 (0)