Skip to content

Commit

Permalink
fix issues with migration from setuptools to toml
Browse files Browse the repository at this point in the history
  • Loading branch information
pswpswpsw committed Oct 31, 2023
1 parent c9ceb83 commit 1540af4
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python 3.10.13
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.10.13
- name: Linting
Expand All @@ -25,9 +25,9 @@ jobs:
python-version: [3.10.13]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -51,11 +51,3 @@ jobs:
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-


# - uses: actions/cache@v1
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements-dev.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-

0 comments on commit 1540af4

Please sign in to comment.