aboutsummaryrefslogtreecommitdiffstats
path: root/dev
Commit message (Collapse)AuthorAgeFilesLines
* python2 -> python in ./devAldo Cortesi2015-04-211-2/+2
| | | | | Python 2 is not at python2 in most environments. If we really care, we should just include an explicit version check at the head of the script.
* make dev script more robust, fix #556Maximilian Hils2015-04-131-2/+3
|
* ./dev: echo what we have doneMaximilian Hils2015-03-141-1/+6
|
* simplify virtualenvMaximilian Hils2015-03-141-11/+1
| | | | | | | | - add dev.bat for Windows users - remove ~/.pipcache creation. If that causes issues with PyInstaller, we should use pip --no-cache-dir there or rm -r pip.locations.USER_CACHE_DIR. - remove superfluous pip install calls.
* Virtualenv is the one and only recommended dev environmentAldo Cortesi2015-03-121-0/+16
- Create a "dev" script to create a virtualenv-based dev environment - Update the docs to remove non-virtualenv install recommendations - Update osx-binaries generation to use virtualenv TODO: - The dev script or an equivalent should be made to work on Windows - We still can't remove the annoying top-level command scripts, because pyinstaller doesn't support entry points. Once it does, they can go.