From dd75a1a076d176049ff1f3d9f616f1a724f794df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:12:54 -0600 Subject: [PATCH] Test with Python 3.13 and add PyPI trove classifiers (#898) --- .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/",