Skip to content

Commit

Permalink
(PR #35) Bump python version to 3.9
Browse files Browse the repository at this point in the history
Bump python version to 3.9
  • Loading branch information
edan-bainglass authored Oct 27, 2023
2 parents 3790f4c + 4db29e4 commit a524633
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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.9"]
backend: ['django']

services:
Expand Down Expand Up @@ -56,10 +56,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand All @@ -72,10 +72,10 @@ jobs:
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install python dependencies
run: |
pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-on-pypi.yml
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.9
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9

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

python:
version: 3.8
version: 3.9
install:
- method: pip
path: .
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Framework :: AiiDA"
]
keywords = ["aiida", "plugin", "aurora"]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"aiida-core>=2.0,<3",
"aiida-ssh2win>=0.2",
Expand Down

0 comments on commit a524633

Please sign in to comment.