Skip to content

Commit

Permalink
I108 broken installer (#109)
Browse files Browse the repository at this point in the history
* update index

* update repo

* switch order of sources

* remove depricated --skip-lock

* revert to development branch
  • Loading branch information
txoof authored Jun 28, 2023
1 parent 7267dce commit 7886cb7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[[source]]
url = "https://pypi.org/simple"
url = "https://www.piwheels.org/simple/"
verify_ssl = true
name = "piwheels"

[[source]]
url = "https://www.pypi.org/simple"
verify_ssl = true
name = "pypi"

Expand All @@ -23,7 +28,7 @@ pycoingecko = "*"
pygal = "*"
qrcode = "*"
cairocffi = "*"
cffi = "*"
QueryLMS = {version="==0.1.2"}
cffi ="*"
QueryLMS = "*"
Pillow = "*"
CairoSVG = "*"
4 changes: 2 additions & 2 deletions install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function install_plugin_requirements {
find $SCRIPT_DIR/../paperpi/plugins -type f -name "requirements-*.txt" -exec cat {} >> $tempfile \;
echo "installing Plugin requirements:"
cat $tempfile
if ! command pipenv install -r $tempfile --skip-lock
if ! command pipenv install -r $tempfile
then
popd
abort "failed to install python modules"
Expand Down Expand Up @@ -118,7 +118,7 @@ function create_pipenv {
then
echo "Creating virtual environment for $APPNAME in $INSTALLPATH$APPNAME"
pushd $INSTALLPATH$APPNAME
if ! command pipenv install --skip-lock
if ! command pipenv install
then
popd
abort "failed to install python modules"
Expand Down
2 changes: 1 addition & 1 deletion paperpi/my_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
APP_NAME = 'PaperPi'
CONTACT='aaron.ciuffo@gmail.com'
DEVEL_NAME = f'com.txoof.{APP_NAME.lower()}'
VERSION='0.5.3.1 RGB'
VERSION='0.5.3.2 RGB'
URL = 'https://github.com/ txoof/PaperPi'


Expand Down

0 comments on commit 7886cb7

Please sign in to comment.