Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Raintale GUI installer to support newest version of Django #22

Open
shawnmjones opened this issue Aug 10, 2021 · 1 comment
Open
Assignees
Labels

Comments

@shawnmjones
Copy link
Member

Wooey does not currently support Django 3.2.5 and the Raintale GUI installer downgrades Django to 3.1.8 so that our system will work. The author of Wooey assures me that a fix will be included in the next Wooey version. Once that version is available, we need to remove the lines downgrading Django from our installer.

if [ $INSTALL_ALL -eq 0 ]; then
echo "installing specific Django version"
pip install Django==3.1.8 # see https://github.com/wooey/Wooey/issues/334
else
pip freeze | grep Django==3.1.8 > /dev/null
status=$?
if [ $status -eq 0 ]; then
echo "Django already installed, skipping install of Django"
else
echo "installing specific Django version"
pip install Django==3.1.8 # see https://github.com/wooey/Wooey/issues/334
fi
fi

@shawnmjones
Copy link
Member Author

Since this relies upon an upstream change that we have no control over, I am removing it from the finished IIPC 2021 project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants