Skip to content

Commit

Permalink
Update workflows with new Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
RaghuSpaceRajan committed May 2, 2024
1 parent 5e5dcb6 commit 7261a32
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gh-test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Test
name: Various Checks and Tests

on:
push:
branches: [ master, dev/jan, experimental ]
branches: [ master, experimental ]
pull_request:
branches: [ master, dev/jan, experimental ]
branches: [ master, experimental ]

jobs:
build:
Expand All @@ -16,10 +16,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: '>=3.7 <=3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/install-from-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Test PyPI Installation
name: Check PyPI Installation

on:
workflow_dispatch:

push:
branches: [ master, dev/jan ]
branches: [ master ]
pull_request:
branches: [ master, dev/jan ]
branches: [ master ]

jobs:
build:
Expand All @@ -15,10 +15,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: '>=3.7 <=3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:
python-version: "3.6"
python-version: '>=3.7 <=3.12'
- name: Install Poetry
run: |
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py
Expand Down

0 comments on commit 7261a32

Please sign in to comment.