Skip to content

Commit

Permalink
update python version to 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsilver committed May 3, 2024
1 parent 7b09c64 commit 1bd9fc8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A basic starter for Python packages with GitHub continuous integration.

## Requirements

- Python 3.9+
- Python 3.10+
- Tested on MacOS Catalina

## Installation
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "python_starter"
version = "0.1.0"
description = "A basic starter for Python packages."
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"matplotlib",
"numpy",
Expand All @@ -32,10 +32,10 @@ python_starter = ["py.typed"]

[tool.black]
line-length = 88
target-version = ["py39"]
target-version = ["py10"]

[tool.isort]
py_version = 39
py_version = 310
profile = "black"
multi_line_output = 2
skip_glob = ["venv/*"]
Expand Down

0 comments on commit 1bd9fc8

Please sign in to comment.