Skip to content

Commit 29ba22f

Browse files
committed
3D - Fix workflow version naming
1 parent 990d60b commit 29ba22f

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,11 @@ jobs:
113113
id-token: write
114114

115115
steps:
116+
- name: Clean dist directory
117+
run: |
118+
set -euo pipefail
119+
rm -rf dist || true
120+
116121
- name: Retrieve release distributions
117122
uses: actions/download-artifact@v4
118123
with:

PyNetSplit.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Metadata-Version: 2.4
22
Name: PyNetSplit
3-
Version: 3.0
4-
Summary: NetSplit release 3A
3+
Version: 3.3
4+
Summary: NetSplit release 3D
55
Home-page: https://github.com/Omena0/NetSplit
66
Author: Unknown
77
License: MIT

coverage.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" ?>
2-
<coverage version="7.10.5" timestamp="1755979625950" lines-valid="195" lines-covered="191" line-rate="0.9795" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
2+
<coverage version="7.10.5" timestamp="1755979866629" lines-valid="195" lines-covered="191" line-rate="0.9795" branches-covered="0" branches-valid="0" branch-rate="0" complexity="0">
33
<!-- Generated by coverage.py: https://coverage.readthedocs.io/en/7.10.5 -->
44
<!-- Based on https://raw.githubusercontent.com/cobertura/web/master/htdocs/xml/coverage-04.dtd -->
55
<sources>

netSplit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
import json
1919
import sys
2020

21-
VERSION = "3.0"
22-
RELEASE_DISPLAY_NAME = "3A"
21+
VERSION = "3.3"
22+
RELEASE_DISPLAY_NAME = "3D"
2323

2424
# Protocol error payloads sent to clients when the proxy fails early.
2525
PROTOCOL_ERRORS: Dict[str, bytes] = {

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
else:
1313
version = "0.0.0"
1414

15-
display_name = rd[1] if rd else None
15+
display_name = rd.group(1) if rd else None
1616

1717
setup(
1818
version=version,

0 commit comments

Comments
 (0)