diff options
author | Martin Vilcans <martin@librador.com> | 2013-08-13 16:18:28 +0200 |
---|---|---|
committer | Martin Vilcans <martin@librador.com> | 2013-08-13 16:18:28 +0200 |
commit | 740c85d54270d41cda86fb78cd7efdeac9a07f68 (patch) | |
tree | e32051ef7fd8d4d9a671473400dcdb5f9975d891 | |
parent | 246083dfac14dc5ebb4e787558b8bd134fc66996 (diff) | |
download | screenplain-740c85d54270d41cda86fb78cd7efdeac9a07f68.tar.gz |
Removed Python 2.5 requirement and Reportlab (not used right now)
-rw-r--r-- | README.markdown | 15 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 2 insertions, 15 deletions
diff --git a/README.markdown b/README.markdown index d090d8c..1979d48 100644 --- a/README.markdown +++ b/README.markdown @@ -56,20 +56,7 @@ Screenplain is released under the [MIT license](http://www.opensource.org/licens Developing ========== -As it was designed to run under Google App Engine, Screenplain should be -compatible with Python 2.5. Use that version for development to make -sure it works. Python 2.5 is no longer available in Ubuntu at least, -but see -[this link](http://kovshenin.com/archives/installing-python-2-5-on-ubuntu-linux-10-10/) -about how to install it. The Python 2.5 requirement may be relaxed -as the online version no longer uses GAE. - -To install reportlab, you'll need Python's development files. In -Ubuntu, just do - - sudo apt-get install python2.5-dev - Set up environment using virtualenvwrapper: - mkvirtualenv -p python2.5 --no-site-packages screenplain + mkvirtualenv --no-site-packages screenplain pip install -r requirements.txt diff --git a/requirements.txt b/requirements.txt index 321e747..3d09f64 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -reportlab +#reportlab unittest2 nose pep8 |