diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index deefd60..7f4f29c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,7 +37,13 @@ pypi-twine: - python3 -m venv .venv - . .venv/bin/activate - pip install --upgrade pip - - pip install build twine + # Pin twine <6 — newer twine auto-detects GitLab CI and refuses to + # fall back to ~/.pypirc on the runner, requiring PYPI_ID_TOKEN + # (Trusted Publishing OIDC) instead. Until we migrate all four + # python/* repos to Trusted Publishing in one coordinated change, + # stick with the classic ~/.pypirc path that ago / make_post_sell / + # remarkbox already use. + - pip install build "twine<6" - python -m build - twine check dist/* - - twine upload dist/* + - twine upload --non-interactive dist/* diff --git a/erldistpy/__init__.py b/erldistpy/__init__.py index aae15f2..17a408c 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.0" +__version__ = "0.1.1" from erldistpy.channel import Channel, ChannelError, IncomingMessage from erldistpy.epmd import EpmdError, EpmdInfo, lookup diff --git a/pyproject.toml b/pyproject.toml index b26f500..42c1932 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "erldistpy" -version = "0.1.0" +version = "0.1.1" 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"