From 31631fb409d80f7c0cf8dd964da993ef08aa6fe5 Mon Sep 17 00:00:00 2001 From: Joscha Date: Wed, 27 Apr 2022 22:16:47 +0200 Subject: [PATCH] Increase minimum python version to 3.9 --- .github/workflows/build-and-release.yml | 2 +- CHANGELOG.md | 1 + README.md | 2 +- setup.cfg | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 565c4e3..090ac7e 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python: ["3.8"] + python: ["3.9"] steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index e70d328..7cee430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ ambiguous situations. - Links to unofficial packages and repology in the readme ### Changed +- Increase minimum supported Python version to 3.9 - Support video listings with more columns - Use UTF-8 when reading/writing the config file diff --git a/README.md b/README.md index b8b2551..ce917b0 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Binaries for Linux, Windows and Mac can be downloaded directly from the ### With pip -Ensure you have at least Python 3.8 installed. Run the following command to +Ensure you have at least Python 3.9 installed. Run the following command to install PFERD or upgrade it to the latest version: ``` diff --git a/setup.cfg b/setup.cfg index 059798a..2378c48 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ version = attr: PFERD.version.VERSION [options] packages = find: -python_requires = >=3.8 +python_requires = >=3.9 install_requires = aiohttp>=3.8.1 beautifulsoup4>=4.10.0