Skip to content

Commit

Permalink
bump python version to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Leopold Talirz committed Jan 28, 2024
1 parent 84a6d0b commit 95edcc1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
python-version: [3.8]
python-version: ['3.10']
aiida-version: ['stable']
services:
postgres:
Expand Down Expand Up @@ -62,10 +62,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.10"
- name: Install python dependencies
env:
PLUGIN_NAME: aiida-ck
Expand All @@ -85,10 +85,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: "3.10"
- name: Install python dependencies
env:
PLUGIN_NAME: aiida-ck
Expand Down
12 changes: 6 additions & 6 deletions {{cookiecutter.plugin_name}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.8"]
aiida-version: ["stable"]
python-version: ['3.10']
aiida-version: ['stable']

services:
postgres:
Expand Down Expand Up @@ -55,10 +55,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.10"
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand All @@ -71,10 +71,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.8"
python-version: "3.10"
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: '3.8'
python-version: '3.10'

- name: Install flit
run: |
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.plugin_name}}/.readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2

python:
version: "3.8"
version: "3.10"
install:
- method: pip
path: .
Expand Down

0 comments on commit 95edcc1

Please sign in to comment.