From ce74693e88fe6b162b395455ba79823da2640374 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 13 Nov 2021 13:25:31 +0100 Subject: [PATCH 1/2] Add Python 3.10 support --- .github/workflows/tests.yaml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 1212c52f..d7f11130 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu, windows, macos] - python: [3.8, 3.9] + python: ["3.8", "3.9", "3.10"] steps: - name: ⤵️ Check out code from GitHub uses: actions/checkout@v2.4.0 diff --git a/pyproject.toml b/pyproject.toml index 66605b75..c4dfede9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Natural Language :: English", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", ] From b47fec57f9bcb560f030ce40b78a38b499314973 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sat, 13 Nov 2021 13:27:15 +0100 Subject: [PATCH 2/2] Add typing checks as well --- .github/workflows/typing.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/typing.yaml b/.github/workflows/typing.yaml index 5feeef44..1c5bb59c 100644 --- a/.github/workflows/typing.yaml +++ b/.github/workflows/typing.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [3.8, 3.9] + python: ["3.8", "3.9", "3.10"] steps: - name: ⤵️ Check out code from GitHub uses: actions/checkout@v2.4.0