Skip to content

Commit

Permalink
Use default python version where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
KapJI committed Sep 12, 2024
1 parent 3237da9 commit 357b5ea
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.9"]
fail-fast: false

runs-on: ${{ matrix.os }}
Expand All @@ -24,8 +23,6 @@ jobs:

- name: Prepare and install deps
uses: ./.github/actions/install-deps
with:
python-version: ${{ matrix.python-version }}

- name: Check if package builds
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linting-and-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
strategy:
matrix:
python-version: ["3.9", "3.10"]
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Check out the repository
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,13 @@ env:
jobs:
publish:
name: Publish
strategy:
matrix:
python-version: ["3.9"]
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4

- name: Prepare and install deps
uses: ./.github/actions/install-deps
with:
python-version: ${{ matrix.python-version }}

- name: Set version
run: poetry version $(git describe --tags --abbrev=0 | sed -e "s/^v//")
Expand Down

0 comments on commit 357b5ea

Please sign in to comment.