File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 9898 print(f'Version verification successful: {actual_version}')
9999 "
100100
101+ - name : Verify setup.py version
102+ run : |
103+ python -c "
104+ import sys
105+ sys.path.insert(0, '.')
106+ from setup import get_version
107+ version = get_version()
108+ print(f'setup.py get_version() returns: {version}')
109+ "
110+
101111 - name : Build package
102112 run : |
103113 # Clean any previous builds
@@ -112,15 +122,6 @@ jobs:
112122 print(f'Building package with version: {version}')
113123 "
114124
115- # Verify setup.py reads the correct version
116- python -c "
117- import sys
118- sys.path.insert(0, '.')
119- from setup import get_version
120- version = get_version()
121- print(f'setup.py get_version() returns: {version}')
122- "
123-
124125 python -m build
125126
126127 - name : Verify built package version
You can’t perform that action at this time.
0 commit comments