From 13cde349988394ea23138ad71a744d2e5521c571 Mon Sep 17 00:00:00 2001 From: Rene Fernandez Date: Tue, 17 Feb 2026 10:08:38 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=E2=9C=A8=20Update=20Python=20version=20req?= =?UTF-8?q?uirements=20to=203.10=20and=20add=20workspace=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/python-tests.yml | 2 +- README.md | 2 +- pyproject.toml | 2 +- zoom-python-client.code-workspace | 7 +++++++ 4 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 zoom-python-client.code-workspace diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 224411b..fa1e465 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -11,7 +11,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.9.13, 3.10.8, 3.11] + python-version: [3.10.8, 3.11, 3.12, 3.13] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index c7da040..bde5370 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ pip install zoom-python-client ## Requirements -- Python >= 3.9 +- Python >= 3.10 ## Usage diff --git a/pyproject.toml b/pyproject.toml index 2bf6ac0..1d4620e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ readme = "README.md" repository = "https://github.com/cern-vc/zoom-python-client" [tool.poetry.dependencies] -python = "^3.9" +python = "^3.10" python-dotenv = "^1.0.0" requests = "^2.31.0" typing-extensions = "^4.7.1" diff --git a/zoom-python-client.code-workspace b/zoom-python-client.code-workspace new file mode 100644 index 0000000..ef9f5d2 --- /dev/null +++ b/zoom-python-client.code-workspace @@ -0,0 +1,7 @@ +{ + "folders": [ + { + "path": "." + } + ] +} \ No newline at end of file From bb752604ffc9e08b96631ef82c32a52367d08eb1 Mon Sep 17 00:00:00 2001 From: Rene Fernandez Date: Tue, 17 Feb 2026 10:11:52 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9C=A8=20Remove=20typed-ast=20from=20req?= =?UTF-8?q?uirements.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 49c3108..4deb882 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ python-dotenv==1.0.0 requests==2.31.0 -typing_extensions==4.7.1 -typed-ast==1.5.5 \ No newline at end of file +typing_extensions==4.7.1 \ No newline at end of file