Removing unsupported python versions from travis and updating readme
This commit is contained in:
parent
bfd6d62a8a
commit
a410150714
2 changed files with 4 additions and 8 deletions
|
@ -2,17 +2,12 @@ language: python
|
||||||
python:
|
python:
|
||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.2"
|
|
||||||
- "3.3"
|
- "3.3"
|
||||||
- "3.4"
|
- "3.4"
|
||||||
- "3.5"
|
- "3.5"
|
||||||
- "3.5-dev" # 3.5 development branch
|
- "3.5-dev" # 3.5 development branch
|
||||||
- "3.6"
|
- "3.6"
|
||||||
- "3.6-dev" # 3.6 development branch
|
- "3.6-dev" # 3.6 development branch
|
||||||
# PyPy versions
|
|
||||||
- "pypy" # PyPy2 2.5.0
|
|
||||||
- "pypy3" # Pypy3 2.4.0
|
|
||||||
- "pypy-5.3.1"
|
|
||||||
# command to install dependencies
|
# command to install dependencies
|
||||||
install: "pip install -r requirements.txt"
|
install: "pip install -r requirements.txt"
|
||||||
# command to run tests
|
# command to run tests
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
This is a simple web app used for an university projects.
|
This is a simple web app used for an university projects.
|
||||||
|
|
||||||
You will need **Python 3.3** or greater to run this app.
|
You will need **Python 2.6+ or Python 3.3+** to run this app.
|
||||||
Python 2 has not been tested.
|
Flask doesn't support Python 3.2.
|
||||||
|
|
||||||
It should provide a simple score board display
|
It should provide a simple score board display
|
||||||
for some benchmarking data which is gathered from another application.
|
for some benchmarking data which is gathered from another application.
|
||||||
|
@ -14,7 +14,8 @@ for some benchmarking data which is gathered from another application.
|
||||||
|
|
||||||
To install and run the application, you must do the following:
|
To install and run the application, you must do the following:
|
||||||
|
|
||||||
First, rename the config.lock.py to config.py
|
Rename the config.lock.py to config.py, so you can safely modify the config.py and still have
|
||||||
|
config.lock.py as a template.
|
||||||
and update the file to match your configuration settings.
|
and update the file to match your configuration settings.
|
||||||
|
|
||||||
Then run:
|
Then run:
|
||||||
|
|
Loading…
Reference in a new issue