Skip to content

Commit

Permalink
CI-CD for airflow operator to use python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
masipauskas committed Nov 14, 2024
1 parent 5051d79 commit 70f3593
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/airflow-operator-release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- run: go run github.com/magefile/mage@v1.14.0 -v airflowOperator
- uses: ./.github/workflows/python-tests
with:
python-version: '3.8'
tox-env: 'py38'
python-version: '3.9'
tox-env: 'py39'
path: third_party/airflow
github-token: ${{secrets.GITHUB_TOKEN}}
- name: Publish package to PyPI
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/airflow-operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python: [ '3.8', '3.9', '3.10' ]
python: [ '3.9', '3.10', '3.11', '3.12' ]
include:
- tox-env: 'py38'
- tox-env: 'py39'
python: '3.9'
- tox-env: 'py310'
python: '3.10'
- tox-env: 'py311'
python: '3.11'
- tox-env: 'py312'
python: '3.12'
steps:
- uses: actions/checkout@v4
- name: Setup Go
Expand Down

0 comments on commit 70f3593

Please sign in to comment.