Skip to content

Commit

Permalink
removing pycrypto hard dep
Browse files Browse the repository at this point in the history
  • Loading branch information
niphlod committed Oct 3, 2016
1 parent 4f68c41 commit bcc237e
Show file tree
Hide file tree
Showing 13 changed files with 1,390 additions and 588 deletions.
20 changes: 2 additions & 18 deletions .travis.yml
Expand Up @@ -2,31 +2,15 @@ language: python

sudo: false

cache:
directories:
- $HOME/.pip-cache/
cache: pip

python:
- '2.7'
- 'pypy'
- '3.5'

install:
- |
if [ "$TRAVIS_PYTHON_VERSION" = "pypy" ]; then
export PYENV_ROOT="$HOME/.pyenv"
if [ -f "$PYENV_ROOT/bin/pyenv" ]; then
pushd "$PYENV_ROOT" && git pull && popd
else
rm -rf "$PYENV_ROOT" && git clone --depth 1 https://github.com/yyuu/pyenv.git "$PYENV_ROOT"
fi
export PYPY_VERSION="5.0.1"
"$PYENV_ROOT/bin/pyenv" install --skip-existing "pypy-$PYPY_VERSION"
virtualenv --python="$PYENV_ROOT/versions/pypy-$PYPY_VERSION/bin/python" "$HOME/virtualenvs/pypy-$PYPY_VERSION"
source "$HOME/virtualenvs/pypy-$PYPY_VERSION/bin/activate"
fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip install pycrypto pg8000; fi;
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pip install -e .; fi;
- pip install -e .

before_script:
- pip install coverage
Expand Down
4 changes: 2 additions & 2 deletions README.markdown
@@ -1,6 +1,6 @@
## Readme

web2py is a free open source full-stack framework for rapid development of fast, scalable, secure and portable database-driven web-based applications.
web2py is a free open source full-stack framework for rapid development of fast, scalable, secure and portable database-driven web-based applications.

It is written and programmable in Python. LGPLv3 License

Expand All @@ -10,7 +10,7 @@ Learn more at http://web2py.com

cp examples/app.yaml ./
cp handlers/gaehandler.py ./

Then edit ./app.yaml and replace "yourappname" with yourappname.

## Important reminder about this GIT repo
Expand Down

0 comments on commit bcc237e

Please sign in to comment.