mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) freshen core README; support python3 in grist-core docker image
Summary: This updates the grist-core README to list specific features of Grist, to make it easier for a casual visitor to get a sense of its scope. Adds links to some new resources (reviews, templates, grist v airtable post) that could also help. Adds python3 to docker image so that templates work without fuss. Test Plan: existing tests should pass Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: dsagal, anaisconce Differential Revision: https://phab.getgrist.com/D3204
This commit is contained in:
14
buildtools/prepare_python2.sh
Executable file
14
buildtools/prepare_python2.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
echo "Making Python2 sandbox"
|
||||
if [ ! -e venv ]; then
|
||||
virtualenv -ppython2.7 venv
|
||||
fi
|
||||
|
||||
. venv/bin/activate
|
||||
|
||||
echo "Updating Python2 packages"
|
||||
pip install --no-deps -r sandbox/requirements.txt
|
||||
echo "Python2 packages ready in venv"
|
||||
Reference in New Issue
Block a user