Skip to content

Commit 9bbe27f

Browse files
committed
deprecate support for Python v3.7 and add support for Python v3.11
1 parent ab039c3 commit 9bbe27f

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ on:
77
push:
88
branches:
99
- main
10-
- develop
1110
pull_request:
1211
branches:
1312
- main
14-
- develop
1513

1614
jobs:
1715
build:
@@ -20,12 +18,12 @@ jobs:
2018
strategy:
2119
fail-fast: false
2220
matrix:
23-
python-version: ["3.7", "3.8", "3.9", "3.10"]
21+
python-version: ["3.8", "3.9", "3.10", "3.11"]
2422

2523
steps:
26-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2725
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v4
2927
with:
3028
python-version: ${{ matrix.python-version }}
3129
- name: Install dependencies

.venv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
yfpy
1+
yfpy-python_3.11.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ YFPY has only been tested extensively on macOS, but is written to be platform-ag
147147

148148
#### Python
149149

150-
YFPY requires Python 3.7 or later, and has been tested through Python 3.10.
150+
YFPY requires Python 3.8 or later, and has been tested through Python 3.11.
151151

152152
#### Development
153153

VERSION_PYTHON.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# minimum supported Python version
2-
__version_minimum_python__ = "3.7"
2+
__version_minimum_python__ = "3.8"
33

44
# minimum supported Python version
5-
__version_maximum_python__ = "3.10"
5+
__version_maximum_python__ = "3.11"

0 commit comments

Comments
 (0)