From 08e89d5652ad4fcdb7febf70a43e5f88e3b14199 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Tue, 16 Jun 2026 14:30:29 -0400 Subject: [PATCH] test stage: except tags, bump to v0.1.3 Pipeline #40349 (v0.1.2) failed because the test stage ran on the tag push and failed (env mismatch on the runner), which skipped the pypi-twine stage downstream. MPS uses 'except: - tags' on test so only pypi-twine runs for tag pipelines; mirror that. Test stage still runs on every branch push, just not on tag pushes. --- .gitlab-ci.yml | 2 ++ erldistpy/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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"