Skip to content

Commit

Permalink
actions: update versions (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalEgn authored Jul 15, 2024
1 parent 0462511 commit 93561ca
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.11"

- name: Install python dependencies
run: |
Expand All @@ -33,7 +33,7 @@ jobs:
python setup.py sdist bdist_wheel
- name: Publish package
uses: pypa/gh-action-pypi-publish@v1.3.1
uses: pypa/gh-action-pypi-publish@v1.9.0
with:
user: __token__
password: ${{ secrets.pypi_password }}
8 changes: 4 additions & 4 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ on:

jobs:
bump:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Check out the repository
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: "3.11"

- name: Install bump2version
shell: bash
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-python-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
python-version: ["3.9", "3.10", "3.11"]
experimental: [false]
include:
- python-version: "3.12"
- python-version: "3.x"
check-latest: true
experimental: true


Expand Down

0 comments on commit 93561ca

Please sign in to comment.