Skip to content

Commit 8a15e3a

Browse files
committed
update: minimum python version
1 parent f9c8403 commit 8a15e3a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, windows-latest, macos-latest]
23-
python-version: ["3.7", "3.10"]
23+
python-version: ["3.8", "3.11"]
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v2

{{cookiecutter.github_project_name}}/.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
16-
python-version: ["3.7", "3.10"]
16+
python-version: ["3.8", "3.11"]
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v2

{{cookiecutter.github_project_name}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "{{ cookiecutter.python_package_name }}"
1010
description = "{{ cookiecutter.project_short_description }}"
1111
readme = "README.md"
1212
license = { file = "LICENSE.txt" }
13-
requires-python = ">=3.7"
13+
requires-python = ">=3.8"
1414
authors = [
1515
{ name = "{{ cookiecutter.author_name }}", email = "{{ cookiecutter.author_email }}" },
1616
]
@@ -26,10 +26,10 @@ classifiers = [
2626
"License :: OSI Approved :: BSD License",
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.7",
3029
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
32+
"Programming Language :: Python :: 3.11",
3333
]
3434
dependencies = [
3535
"ipywidgets>=7.0.0",

0 commit comments

Comments
 (0)