Skip to content

Commit

Permalink
Update Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
keisen committed Mar 25, 2024
1 parent 280c65a commit ca28edf
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 35 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, '3.10', '3.11']
python-version: [3.9, '3.10', '3.11', '3.12']
tensorflow: [current, pre]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package-up-to-TF2.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- python-version: '3.10'
tensorflow: 2.7.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip and Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package-up-to-TF2.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- python-version: 3.9
tensorflow: 2.5.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,21 @@ jobs:
fail-fast: false
matrix:
python-version: [3.8, 3.9, '3.10', '3.11']
tensorflow: ['2.12.0', '2.13.0', '2.14.0']
tensorflow: ['2.12.0', '2.13.0', '2.14.0', '2.15.0', '2.16.0']
exclude:
- python-version: 3.8
tensorflow: '2.14.0'
- python-version: 3.8
tensorflow: '2.15.0'
- python-version: 3.8
tensorflow: '2.16.0'
include:
- python-version: '3.12'
tensorflow: '2.16.0'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip and Install dependencies
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/python-publish-conda.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --no-cache-dir --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sphinx-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install pandoc
run: |
sudo apt update
Expand Down

0 comments on commit ca28edf

Please sign in to comment.