From 9bbe27f2f1ad5ba8e90f0ab66ec2520ef0ac5348 Mon Sep 17 00:00:00 2001 From: uberfastman <4575707+uberfastman@users.noreply.github.com> Date: Sun, 16 Jul 2023 00:30:19 -0400 Subject: [PATCH] deprecate support for Python v3.7 and add support for Python v3.11 --- .github/workflows/python-package.yml | 8 +++----- .venv | 2 +- README.md | 2 +- VERSION_PYTHON.py | 4 ++-- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index ed9bb09a..9b033a6b 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -7,11 +7,9 @@ on: push: branches: - main - - develop pull_request: branches: - main - - develop jobs: build: @@ -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 diff --git a/.venv b/.venv index 652c7fc8..b76d1646 100644 --- a/.venv +++ b/.venv @@ -1 +1 @@ -yfpy +yfpy-python_3.11.1 \ No newline at end of file diff --git a/README.md b/README.md index 03c181e8..ff2cec0f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/VERSION_PYTHON.py b/VERSION_PYTHON.py index 25feb8a4..3f04faad 100644 --- a/VERSION_PYTHON.py +++ b/VERSION_PYTHON.py @@ -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"