From 8822a9da4edf6bc155874046ebfbbc43314d1c33 Mon Sep 17 00:00:00 2001 From: Colin-b Date: Thu, 27 Apr 2023 18:11:28 +0200 Subject: [PATCH] drop python 3.6 support --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- CHANGELOG.md | 3 +++ pyproject.toml | 3 +-- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e8f516..3473122 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e9a3b1..f1071bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index b3fd06c..582f37c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `requests_auth.OktaResourceOwnerPasswordCredentials` providing Okta resource owner password credentials flow easy setup. - Explicit support for Python 3.11 +### Removed +- Explicit support for Python 3.6 + ## [6.0.0] - 2022-01-11 ### Changed - `requests_auth.oauth2_tokens.TokenMemoryCache.get_token` method now requires arguments to be named. diff --git a/pyproject.toml b/pyproject.toml index 1ca8593..71a1bdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "requests_auth" description = "Authentication for Requests" readme = "README.md" -requires-python = ">=3.6" +requires-python = ">=3.7" license = {file = "LICENSE"} authors = [ {name = "Colin Bounouar", email = "colin.bounouar.dev@gmail.com" } @@ -31,7 +31,6 @@ classifiers=[ "Natural Language :: English", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",