Skip to content

Commit

Permalink
update python versions (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsam authored Dec 20, 2024
1 parent 67e67f6 commit 419d735
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/bandit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Run Bandit Scan
uses: lukehinds/bandit-action@new-action
env:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/build-distribution.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ jobs:
build-distribution:
name: Build distribution
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Install pypa/build
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/check-development-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@ jobs:
check-development-dependencies:
name: Check development dependencies
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Install dependencies
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/create-sphinx-documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@ permissions:
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
python-version: ["3.12"]

steps:
- name: Checkout repository
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/isort.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,20 @@ permissions:
jobs:
isort:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Install dependencies
run: |
python -m venv ./venv
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@ jobs:
build-distribution:
name: Build distribution
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

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

- name: Install pypa/build
run: |
Expand Down

0 comments on commit 419d735

Please sign in to comment.