From 740c85d54270d41cda86fb78cd7efdeac9a07f68 Mon Sep 17 00:00:00 2001 From: Martin Vilcans Date: Tue, 13 Aug 2013 16:18:28 +0200 Subject: Removed Python 2.5 requirement and Reportlab (not used right now) --- README.markdown | 15 +-------------- 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 -- cgit