Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions python-interpreter-builder/scripts/build-python-3.5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,8 @@ make test TESTOPTS="--exclude test___all__ test_dbm test_imaplib test_shutil"

# Install
make altinstall
# We don't expect users to statically link Python into a C/C++ program
rm "$PREFIX"/lib/libpython3.5m.a \
"$PREFIX"/lib/python3.5/config-*/libpython3.5m.a
# Remove redundant copy of libpython
rm "$PREFIX"/lib/libpython3.5m.a
# Remove opt-mode bytecode
find "$PREFIX"/lib/python3.5/ \
-name \*.opt-\?.pyc \
Expand Down
5 changes: 2 additions & 3 deletions python-interpreter-builder/scripts/build-python-3.6.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,8 @@ make test TESTOPTS="--exclude test___all__ test_dbm test_imaplib test_shutil"

# Install
make altinstall
# We don't expect users to statically link Python into a C/C++ program
rm "$PREFIX"/lib/libpython3.6m.a \
"$PREFIX"/lib/python3.6/config-*/libpython3.6m.a
# Remove redundant copy of libpython
rm "$PREFIX"/lib/libpython3.6m.a
# Remove opt-mode bytecode
find "$PREFIX"/lib/python3.6/ \
-name \*.opt-\?.pyc \
Expand Down
2 changes: 1 addition & 1 deletion tests/python2-libraries/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ html5lib
httplib2==0.10.3
idna==2.5
ipaddress==1.0.18
ipython==6.0.0
#ipython # No longer supports Python 2 as of version 6.0
iso8601==0.1.11
isodate==0.5.4
itsdangerous==0.24
Expand Down
1 change: 1 addition & 0 deletions tests/python3-libraries/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ unidecode==0.4.20
unittest2==1.1.0
uritemplate==3.0.0
urllib3==1.21.1
uwsgi==2.0.15
versiontools==1.9.1
virtualenv==15.1.0
waitress==1.0.2
Expand Down