blob: 7e86f352095501da21e6b4d0e81d2cdd78754f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
#
# The Python 2 source is the definitive source. This script uses 2to3-3.2 to
# create a new python3/bs4 source tree that works under Python 3.
#
# See README.txt to see how to run the test suite after conversion.
echo "About to destroy the python3.2/bs4 directory."
echo "Don't let this script run any further if your own stuff is in there."
rm -rfI python3.2/bs4
cp -r bs4 python3.2
2to3-3.2 -w python3.2
echo ""
echo "OK, conversion is done."
echo "Now running the unit tests."
(cd python3.2/bs4 && python3.2 -m unittest discover)
|