diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 7cd9c3ec..91367cea 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -14,9 +14,7 @@ jobs: with: python-version: '3.9' - name: Install dependencies - run: | - pip install --upgrade pip uv - uv pip install build twine + run: pip install --upgrade pip twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} diff --git a/segmentation_models_pytorch/__version__.py b/segmentation_models_pytorch/__version__.py index b87975ee..80d8c4dd 100644 --- a/segmentation_models_pytorch/__version__.py +++ b/segmentation_models_pytorch/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 4, 0) +VERSION = (0, 4, 1, "dev0") __version__ = ".".join(map(str, VERSION))