Skip to content

Commit

Permalink
fix: Bump versions in the release workflow.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
feanil committed Oct 22, 2024
1 parent 0c5e04d commit c229716
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:
jobs:

push:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: 3.5
python-version: 3.11

- name: Install pip
run: pip install pip
Expand Down
2 changes: 1 addition & 1 deletion codejail/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""init"""

__version__ = '3.5.0'
__version__ = '3.5.1'

0 comments on commit c229716

Please sign in to comment.