Skip to content

Commit

Permalink
Get Python version from project file
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Apr 22, 2024
1 parent fc4a841 commit 9eadba9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- name: Check out code
uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
python-version: ${{ matrix.python-version }}
python-version-file: setup.cfg

- name: Install dependencies
run: |
Expand Down

0 comments on commit 9eadba9

Please sign in to comment.