Skip to content

Commit 0978578

Browse files
authored
Merge pull request #1 from tomsilver/update-python-version
update python version to 3.10
2 parents 7b09c64 + 3082746 commit 0978578

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: [3.9]
21+
python-version: ["3.10"]
2222
steps:
2323
- uses: actions/checkout@v2
2424
- name: Set up Python ${{ matrix.python-version }}
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
strategy:
3939
matrix:
40-
python-version: [3.9]
40+
python-version: ["3.10"]
4141
steps:
4242
- uses: actions/checkout@v2
4343
- name: Set up Python ${{ matrix.python-version }}
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-latest
5757
strategy:
5858
matrix:
59-
python-version: [3.9]
59+
python-version: ["3.10"]
6060
steps:
6161
- uses: actions/checkout@v2
6262
- name: Set up Python ${{ matrix.python-version }}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A basic starter for Python packages with GitHub continuous integration.
66

77
## Requirements
88

9-
- Python 3.9+
9+
- Python 3.10+
1010
- Tested on MacOS Catalina
1111

1212
## Installation

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "python_starter"
77
version = "0.1.0"
88
description = "A basic starter for Python packages."
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.10"
1111
dependencies = [
1212
"matplotlib",
1313
"numpy",
@@ -32,10 +32,10 @@ python_starter = ["py.typed"]
3232

3333
[tool.black]
3434
line-length = 88
35-
target-version = ["py39"]
35+
target-version = ["py310"]
3636

3737
[tool.isort]
38-
py_version = 39
38+
py_version = 310
3939
profile = "black"
4040
multi_line_output = 2
4141
skip_glob = ["venv/*"]

0 commit comments

Comments
 (0)