Skip to content

Commit 936ea1f

Browse files
committed
Merge hell
1 parent 9e0b544 commit 936ea1f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

admin-tools/install-all-3.7-3.10.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ fi
2121

2222
cd ../dist/
2323

24-
install_file="python-control-flow_37-${__version__}.tar.gz"
25-
install_check_command="python-cfg --version"
24+
install_file="decompyle3_37-${__version__}.tar.gz"
25+
install_check_command="decompyle3 --version"
2626
for version in $PYVERSIONS; do
2727
echo "*** Installing ${install_file} for Python ${version} ***"
2828
echo $version

admin-tools/make-dist-3.7-3.10.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ if ! source ./setup-python-3.7.sh ; then
2626
exit $?
2727
fi
2828

29-
source ${PACKAGE_MODULE}/version.py
29+
cd ..
30+
source ./${PACKAGE_MODULE}/version.py
3031
if [[ ! -n $__version__ ]]; then
3132
echo "Something is wrong: __version__ should have been set."
3233
exit 1
@@ -68,6 +69,7 @@ tarball=dist/${PACKAGE}-${__version__}.tar.gz
6869

6970
if [[ -f $tarball ]]; then
7071
version_specific_tarball=dist/${PACKAGE_NAME}_37-${__version__}.tar.gz
72+
mv -v $tarball $version_specific_tarball
7173
twine check $version_specific_tarball
7274
fi
7375
twine check dist/${PACKAGE_MODULE}-${__version__}-py3*.whl

0 commit comments

Comments
 (0)