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.
This commit is contained in:
russell@unturf.com 2026-06-16 14:30:29 -04:00
parent 9b3039fa6f
commit 08e89d5652
No known key found for this signature in database
3 changed files with 4 additions and 2 deletions

View file

@ -13,6 +13,8 @@ stages:
test:
stage: test
tags: ["build"]
except:
- tags
script:
- python3 -m venv .venv
- . .venv/bin/activate

View file

@ -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

View file

@ -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"