diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 2efa91bc..238420b7 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -8,11 +8,15 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: '3.x' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install setuptools wheel twine - name: Check consistency between the package version and release tag run: | RELEASE_VER=${GITHUB_REF#refs/*/} @@ -21,10 +25,6 @@ jobs: then echo "package ver. ($PACKAGE_VER) != release ver. ($RELEASE_VER)"; exit 1 fi - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} diff --git a/chex/__init__.py b/chex/__init__.py index 71839c2f..ed888300 100644 --- a/chex/__init__.py +++ b/chex/__init__.py @@ -100,7 +100,7 @@ from chex._src.variants import variants -__version__ = "0.1.84" +__version__ = "0.1.85" __all__ = ( "all_variants",