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:
parent
9b3039fa6f
commit
08e89d5652
3 changed files with 4 additions and 2 deletions
|
|
@ -13,6 +13,8 @@ stages:
|
|||
test:
|
||||
stage: test
|
||||
tags: ["build"]
|
||||
except:
|
||||
- tags
|
||||
script:
|
||||
- python3 -m venv .venv
|
||||
- . .venv/bin/activate
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue