File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -777,15 +777,15 @@ containerfile-update:
777
777
.PHONY : dist wheel sdist verify publish
778
778
779
779
dist : clean # # Build wheel + sdist
780
- @/bin/bash -c " source $( VENV_DIR ) /bin/activate && python3 -m build"
780
+ python3 -m build
781
781
@echo " 🛠 Wheel & sdist written to ./dist"
782
782
783
783
wheel : # # Build wheel only
784
- @/bin/bash -c " source $( VENV_DIR ) /bin/activate && python3 -m build -w"
784
+ python3 -m build -w
785
785
@echo " 🛠 Wheel written to ./dist"
786
786
787
787
sdist : # # Build source distribution only
788
- @/bin/bash -c " source $( VENV_DIR ) /bin/activate && python3 -m build -s"
788
+ python3 -m build -s
789
789
@echo " 🛠 Source distribution written to ./dist"
790
790
791
791
verify : dist # # Build, run metadata & manifest checks
You can’t perform that action at this time.
0 commit comments