From d6438224625d585e6601c4ff2085a6dcd66f34b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Mon, 7 Oct 2024 22:42:36 -0600 Subject: [PATCH] Test with Python 3.13 and add PyPI trove classifiers --- .github/workflows/ci.yml | 10 ++++++++-- setup.py | 2 ++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99d11beb..3408eece 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,13 @@ jobs: strategy: fail-fast: false 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" aiobotocore-version: [">=2.5.4,<2.6.0", ">=2.7.0,<2.8.0", ">=2.8.0,<2.9.0", "<3.0.0"] env: @@ -27,7 +33,7 @@ jobs: uses: conda-incubator/setup-miniconda@v3 with: environment-file: ci/env.yaml - python-version: ${{ matrix.PY }} + python-version: ${{ matrix.python-version }} - name: Install shell: bash -l {0} diff --git a/setup.py b/setup.py index c4f514e3..5b7dd5b1 100755 --- a/setup.py +++ b/setup.py @@ -24,6 +24,8 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], description="Convenient Filesystem interface over S3", url="http://github.com/fsspec/s3fs/",