Skip to content

Commit 8cd85c4

Browse files
fix(cicd): shadowing issues in release workflow (#167)
1 parent 4a0aee0 commit 8cd85c4

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,14 @@ jobs:
146146
python -m pip install --upgrade pip
147147
pip install setuptools wheel twine
148148
149+
- name: Drop build folder to prevent shadowing issues w/ the PyPA “build” module
150+
run: rm -rf build
151+
152+
- name: Install PyPA “build” module
153+
run: pip install -U build
154+
149155
- name: Build sdist
150-
run: |
151-
python -m build --sdist
156+
run: python -m build --sdist
152157

153158
# ----------------------------------------------------
154159
# Download wheels built on each runner

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ name = "Removals"
140140
showcontent = true
141141

142142
[tool.bumpversion]
143-
current_version = "5.3.15"
143+
current_version = "5.3.16"
144144
parse = """
145145
(?P<major>\\d+)
146146
\\.(?P<minor>\\d+)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
setup(
9999
name="faster-eth-utils",
100100
# *IMPORTANT*: Don't manually change the version here. Use `make bump`, as described in readme
101-
version="5.3.15",
101+
version="5.3.16",
102102
description=(
103103
"""A fork of eth-utils: Common utility functions for python code that interacts with Ethereum, implemented in C"""
104104
),

0 commit comments

Comments
 (0)