From bfdeaa17ff5a84224abbc728633dac1343820fd6 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Sat, 4 Jun 2022 15:56:11 +0300 Subject: [PATCH] drop python 3.7 support for TypedDict --- .github/workflows/pythonpackage.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 2e68f57..159a5fe 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -17,7 +17,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index bdbb6d1..3d488fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,14 +11,13 @@ keywords = ["icalendar", "sync", "google", "calendar"] classifiers = [ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', ] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" google-auth = "2.6.6" google-api-python-client = "2.49.0" icalendar = "4.0.9"