From 61d31865222155bac693068d9907031c2d1fd352 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 11 Feb 2022 14:29:25 +0300 Subject: [PATCH] drop python 3.6 support --- .github/workflows/pythonpackage.yml | 2 +- .travis.yml | 1 - pyproject.toml | 3 +-- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 77ddae8..c4a0deb 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -17,7 +17,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 diff --git a/.travis.yml b/.travis.yml index 314f26d..8d42a25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ os: linux dist: focal python: - - "3.6" - "3.7" - "3.8" - "3.9" diff --git a/pyproject.toml b/pyproject.toml index 2112dca..884e547 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,6 @@ keywords = ["icalendar", "sync", "google", "calendar"] classifiers = [ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', @@ -19,7 +18,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = "^3.6" +python = "^3.7" google-auth = "2.6.0" google-api-python-client = "2.36.0" icalendar = "4.0.9"