Skip to content

Commit

Permalink
use 3.12 instead of 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bharat-thotakura committed Aug 8, 2024
1 parent a67d9f8 commit 903a80d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 24 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
Expand All @@ -43,10 +43,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
Expand All @@ -64,10 +64,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
Expand All @@ -85,10 +85,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
Expand Down Expand Up @@ -159,10 +159,10 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
Expand All @@ -180,10 +180,10 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -199,10 +199,10 @@ jobs:
timeout-minutes: 6
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
Expand Down Expand Up @@ -232,10 +232,10 @@ jobs:
name: Notebook check for ${{ matrix.type }}
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
15 changes: 7 additions & 8 deletions .github/workflows/daily-integration-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,23 @@ name: Daily Integration Check

on:
schedule:
- cron: "0 14 * * *" # Daily at 14:00 UTC
workflow_dispatch: # so that we can also run manually, e.g. for testing

- cron: "0 14 * * *" # Daily at 14:00 UTC
workflow_dispatch: # so that we can also run manually, e.g. for testing

jobs:
daily-integration-check:
name: Pytest integration check
env:
SUPERSTAQ_API_KEY : ${{ secrets.SUPERSTAQ_API_KEY }}
TEST_USER_IBMQ_TOKEN : ${{ secrets.TEST_USER_IBMQ_TOKEN }}
SUPERSTAQ_API_KEY: ${{ secrets.SUPERSTAQ_API_KEY }}
TEST_USER_IBMQ_TOKEN: ${{ secrets.TEST_USER_IBMQ_TOKEN }}
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -32,7 +31,7 @@ jobs:
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TEST_USER_IBMQ_TOKEN : ${{ secrets.TEST_USER_IBMQ_TOKEN }}
TEST_USER_IBMQ_TOKEN: ${{ secrets.TEST_USER_IBMQ_TOKEN }}
with:
filename: .github/integration-check-failure-issue.md
update_existing: true

0 comments on commit 903a80d

Please sign in to comment.