Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
Comment thread
pganssle marked this conversation as resolved.
Outdated
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
Comment thread
pganssle marked this conversation as resolved.
Outdated
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
TOXENV: py

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
Comment thread
pganssle marked this conversation as resolved.
Outdated
- if: ${{ matrix.python-version == '2.7' }}
run: |
sudo apt-get install python-is-python2
curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python get-pip.py
- if: ${{ matrix.python-version != '2.7' }}
name: ${{ matrix.python-version }} - ${{ matrix.os }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
Comment thread
pganssle marked this conversation as resolved.
Outdated
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand All @@ -58,9 +58,9 @@ jobs:
TOXENV: ${{ matrix.toxenv }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
Comment thread
pganssle marked this conversation as resolved.
Outdated
- name: ${{ matrix.toxenv }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
Comment thread
pganssle marked this conversation as resolved.
Outdated
with:
python-version: "3.x"
- name: Install tox
Expand Down
Loading