From 30a8e9637aa4717da1f5456bc59593982d0a4e2b Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 15 Jul 2022 11:49:35 +0100 Subject: [PATCH 1/2] Signal python 3.7+ in setup.cfg --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5c65d1b..57387cd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,7 @@ classifiers = package_dir = =src packages = matrix_common -python_requires = >= 3.6 +python_requires = >= 3.7 install_requires = attrs importlib_metadata >= 1.4; python_version < '3.8' From d7202fd377f7061026f4c812259c6eb3a3b25a79 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Fri, 15 Jul 2022 11:50:42 +0100 Subject: [PATCH 2/2] Set oldest Python version to 3.7 in unit test CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d87f10c..1306ecd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: matrix: # Run the unit tests both against our oldest supported Python version # and the newest stable. - python_version: [ "3.6", "3.x" ] + python_version: [ "3.7", "3.x" ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2