Skip to content

Commit

Permalink
Add symlinks for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Nov 2, 2024
1 parent 27e50e5 commit 84b244b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ add_extra_python() {
(cd ${IMPINSTALL}/lib/${PLATFORM} && for ext in _*.so; do mv $ext ${ext%.so}.${PY3ABITAG}.so; done)

# Add symlinks for newer compatible Python versions (Wynton and Fedora)
for pyver in 37m 38 39 310 311 312; do
for pyver in 37m 38 39 310 311 312 313; do
echo "Adding symlinks for Python ${pyver}..."
(cd lib && for ext in _*.so; do ln -sf ${ext%.so}.${PY3ABITAG}.so ${IMPINSTALL}/lib/${PLATFORM}/${ext%.so}.cpython-${pyver}-x86_64-linux-gnu.so; done)
done
Expand Down

0 comments on commit 84b244b

Please sign in to comment.