Skip to content

Commit

Permalink
deprecate support for Python v3.7 and add support for Python v3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
uberfastman committed Jul 16, 2023
1 parent ab039c3 commit 9bbe27f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop

jobs:
build:
Expand All @@ -20,12 +18,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .venv
Original file line number Diff line number Diff line change
@@ -1 +1 @@
yfpy
yfpy-python_3.11.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ YFPY has only been tested extensively on macOS, but is written to be platform-ag

#### Python

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

#### Development

Expand Down
4 changes: 2 additions & 2 deletions VERSION_PYTHON.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# minimum supported Python version
__version_minimum_python__ = "3.7"
__version_minimum_python__ = "3.8"

# minimum supported Python version
__version_maximum_python__ = "3.10"
__version_maximum_python__ = "3.11"

0 comments on commit 9bbe27f

Please sign in to comment.