From efcce4cffa3ea2e5c44e53906a7a0fa4ad5a2abf Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Mon, 4 Nov 2024 00:00:21 -0500 Subject: [PATCH] Update changelog and publishing jobs --- .github/workflows/publishing.yml | 14 +++++++------- docs/main/changelog.rst | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index 63247568..9fd7128a 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -15,11 +15,11 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.12 + python-version: 3.13 - run: pip install tox - run: tox env: - TOXENV: 3.12 + TOXENV: 3.13 linters: name: Run linters @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.12 + python-version: 3.13 - run: pip install tox - run: tox env: @@ -45,7 +45,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.12 + python-version: 3.13 - run: | python -m pip install --upgrade pip setuptools python setup.py sdist @@ -61,7 +61,7 @@ jobs: matrix: os: [ubuntu-22.04, windows-2019, macos-14] env: - CIBW_SKIP: cp27-* cp313-* + CIBW_SKIP: cp27-* steps: - uses: actions/checkout@v3 - name: Build wheels @@ -75,7 +75,7 @@ jobs: needs: [tests, linters] runs-on: ubuntu-22.04 env: - CIBW_SKIP: cp27-* cp313-* + CIBW_SKIP: cp27-* steps: - uses: actions/checkout@v3 - name: Set up QEMU @@ -114,7 +114,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.12 + python-version: 3.13 - run: pip install awscli - run: pip install -r requirements-doc.txt - run: pip install -e . diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index dae1e8b7..9bd3a904 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -9,6 +9,7 @@ follows `Semantic versioning`_ Develop -------- +- Add support for Python 3.13. - Migrate to Cython 3 (version 3.0.11). Many thanks to `ZipFile `_ for this contribution `#813 `_.