Skip to content

Commit

Permalink
Try fix with python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbruno committed Feb 4, 2025
1 parent 5de1946 commit 4007e97
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgbuild/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ _module="webpy"
_pkgname="python-$_module"
pkgname="bbv-$_module"
pkgver=0.70
pkgrel=5
pkgrel=6
replaces=('python-webpy')
provides=('python-webpy')
pkgdesc="A web framework for Python"
Expand Down Expand Up @@ -57,10 +57,10 @@ package() {
mkdir -p usr/lib/python3.13/site-packages
cd usr/lib/python3.13/site-packages
ln -s ../../python3.12/site-packages/web web
elif [[ -e usr/lib/python3.13 ]]; then
rm -R usr/lib/python3.13/site-packages/web/__pycache__
mkdir -p usr/lib/python3.12/site-packages
cd usr/lib/python3.12/site-packages
ln -s ../../python3.13/site-packages/web web
# elif [[ -e usr/lib/python3.13 ]]; then
# rm -R usr/lib/python3.13/site-packages/web/__pycache__
# mkdir -p usr/lib/python3.12/site-packages
# cd usr/lib/python3.12/site-packages
# ln -s ../../python3.13/site-packages/web web
fi
}

0 comments on commit 4007e97

Please sign in to comment.