From 1eb9f2fc79e7d4e971777757b3fff47c5df42089 Mon Sep 17 00:00:00 2001 From: Neraste Date: Mon, 26 Feb 2024 02:05:55 +0100 Subject: [PATCH 1/2] Drop Python 3.7 support --- .github/workflows/ci.yml | 1 - CHANGELOG.md | 4 ++++ README.md | 2 +- requirements_dev.txt | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e49479f..da649175 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,6 @@ jobs: - macos-latest - windows-latest python-version: - - "3.7" - "3.8" - "3.9" - "3.10" diff --git a/CHANGELOG.md b/CHANGELOG.md index 57244dab..d6c6a994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,10 @@ Any important notes regarding the update. - MacOS support. +### Removed + +- Dropped Python 3.7 support. + ## 1.8.1 - 2023-12-17 ## 1.8.0 - 2022-11-23 diff --git a/README.md b/README.md index 0facf736..60a620bf 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Installation guidelines are provided over here: ### System requirements -* Python3, to make everything up and running (supported versions: 3.7, 3.8, 3.9, 3.10, and 3.11). +* Python3, to make everything up and running (supported versions: 3.8, 3.9, 3.10, and 3.11). Linux, Mac and Windows are supported. diff --git a/requirements_dev.txt b/requirements_dev.txt index 902383c7..a16a1ddb 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,6 +1,6 @@ black>=22.10.0,<22.11.0 codecov>=2.1.12,<2.2.0 -flake8>=5.0.4,<5.1.0 +flake8>=7.0.0,<7.1.0 isort>=5.10.1,<5.11.0 pre-commit>=2.20.0,<2.21.0 pytest-asyncio>=0.20.2,<0.21.0 From 2431803a9d4d7e3b9bb6258f6948debbfe7c29e8 Mon Sep 17 00:00:00 2001 From: Neraste Date: Mon, 26 Feb 2024 02:07:46 +0100 Subject: [PATCH 2/2] Add Python 3.12 support --- .github/workflows/ci.yml | 3 ++- CHANGELOG.md | 1 + README.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da649175..15626570 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" steps: - uses: actions/checkout@v4 @@ -50,7 +51,7 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" cache: 'pip' - name: Install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index d6c6a994..4ad10efc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ Any important notes regarding the update. ### Added - MacOS support. +- Added Python 3.12 support. ### Removed diff --git a/README.md b/README.md index 60a620bf..de414798 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Installation guidelines are provided over here: ### System requirements -* Python3, to make everything up and running (supported versions: 3.8, 3.9, 3.10, and 3.11). +* Python3, to make everything up and running (supported versions: 3.8, 3.9, 3.10, 3.11, and 3.12). Linux, Mac and Windows are supported.