diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7f4f29c..f691d1c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,6 +13,8 @@ stages: test: stage: test tags: ["build"] + except: + - tags script: - python3 -m venv .venv - . .venv/bin/activate diff --git a/erldistpy/__init__.py b/erldistpy/__init__.py index 8c3d9fe..355d2df 100644 --- a/erldistpy/__init__.py +++ b/erldistpy/__init__.py @@ -1,6 +1,6 @@ """erldistpy — native Python client for our Erlang distribution protocol.""" -__version__ = "0.1.2" +__version__ = "0.1.3" from erldistpy.channel import Channel, ChannelError, IncomingMessage from erldistpy.epmd import EpmdError, EpmdInfo, lookup diff --git a/pyproject.toml b/pyproject.toml index 28bc421..0dbe692 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta" [project] name = "erldistpy" -version = "0.1.2" +version = "0.1.3" description = "Native Python client for Erlang distribution protocol — EPMD + v6 handshake + gen_server call(), no asyncio." readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.10"