diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bd3959..053a72c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,6 +50,7 @@ jobs: run: | pyinstaller --noconfirm --clean --onefile --name dataplicity \ --target-architecture "${{ matrix.macos_arch }}" \ + --exclude-module websockets.speedups \ --workpath pyinstaller-build --distpath pyinstaller-dist \ dataplicity_cli/__main__.py diff --git a/dataplicity_cli/__init__.py b/dataplicity_cli/__init__.py index b9797df..d4a0c3f 100644 --- a/dataplicity_cli/__init__.py +++ b/dataplicity_cli/__init__.py @@ -1,3 +1,3 @@ __all__ = ["__version__"] -__version__ = "0.1.5" +__version__ = "0.1.6" diff --git a/pyproject.toml b/pyproject.toml index eb01415..2d977e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dataplicity-cli" -version = "0.1.5" +version = "0.1.6" description = "Dataplicity command line interface" readme = "README.md" requires-python = ">=3.9" diff --git a/tests/test_cli_ux_snapshots.py b/tests/test_cli_ux_snapshots.py index d804d2b..32ccc8b 100644 --- a/tests/test_cli_ux_snapshots.py +++ b/tests/test_cli_ux_snapshots.py @@ -136,7 +136,7 @@ def test_logging_path_map_help_snapshot(self) -> None: def test_version_flag_snapshot(self) -> None: result = self._invoke(["--version"]) self.assertEqual(result.exit_code, 0, msg=result.output) - self.assertEqual(result.output.strip(), "dataplicity-cli 0.1.5") + self.assertEqual(result.output.strip(), "dataplicity-cli 0.1.6") def test_auth_required_message_snapshot_json(self) -> None: with tempfile.TemporaryDirectory() as temp_dir: