diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4662b8c..3b9e673 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: - "3.10" - 3.11 - 3.12 - - 3.13-dev + - 3.13 - pypy-3.8 - pypy-3.9 - pypy-3.10 @@ -52,7 +52,7 @@ jobs: matrix: os: - ubuntu-20.04 - python-version: [3.13-dev] + python-version: [3.13] steps: - name: Checkout code uses: actions/checkout@v2 @@ -120,7 +120,7 @@ jobs: - "3.10" - 3.11 - 3.12 - - 3.13-dev + - 3.13 - pypy-3.8 - pypy-3.9 - pypy-3.10 @@ -156,7 +156,7 @@ jobs: - "3.10" - 3.11 - 3.12 - - 3.13-dev + - 3.13 - pypy-3.8 - pypy-3.9 - pypy-3.10 @@ -226,7 +226,7 @@ jobs: if: ${{ matrix.arch == 'aarch64' }} uses: docker/setup-qemu-action@v2 - name: Build wheels - uses: pypa/cibuildwheel@v2.21.2 + uses: pypa/cibuildwheel@v2.21.3 with: output-dir: dist env: diff --git a/src/wrapt/__init__.py b/src/wrapt/__init__.py index 6fd8952..0cd1a28 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '17', '0dev4') +__version_info__ = ('1', '17', '0rc1') __version__ = '.'.join(__version_info__) from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,