From af5ff4ccd444d71080baf87b3679b29e2c15fce9 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Thu, 28 Nov 2024 09:48:17 -0800 Subject: [PATCH] Explicitly depend on certifi; add Python 3.13 to CI --- .github/workflows/ci.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c30413..ce266af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: max-parallel: 8 matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{matrix.python-version}} diff --git a/setup.py b/setup.py index 2e16127..3ecda92 100755 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ "ipwhois >= 1.2.0, < 2", "uritemplate >= 4.1.1, < 5", "chalice >= 1.31.2, < 2", + "certifi >= 2023.11.17", ], extras_require={ "test": tests_require,