diff --git a/.github/workflows/build_publish.yaml b/.github/workflows/build_publish.yaml index 78022ab..55f1890 100644 --- a/.github/workflows/build_publish.yaml +++ b/.github/workflows/build_publish.yaml @@ -47,15 +47,10 @@ jobs: run: | poetry run black shuttleai --check - # Mypy - - name: Mypy Check - run: | - poetry run mypy shuttleai - - # Tests (disabled for now) - # - name: Run Tests + # # Mypy (disabled for now) + # - name: Mypy Check # run: | - # poetry run pytest tests + # poetry run mypy shuttleai publish: if: startsWith(github.ref, 'refs/tags') # || github.ref == 'refs/heads/main' diff --git a/shuttleai/__init__.py b/shuttleai/__init__.py index 56b27e6..f5fd0d5 100644 --- a/shuttleai/__init__.py +++ b/shuttleai/__init__.py @@ -1,5 +1,5 @@ __title__ = "shuttleai" -__version__ = "4.1.3" +__version__ = "4.1.4" from ._patch import _patch_httpx from .client import AsyncShuttleAI, ShuttleAI