Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
ac69d0f0
Commit
ac69d0f0
authored
Jun 23, 2017
by
Serge S. Koval
Committed by
GitHub
Jun 23, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1501 from pawl/sphinx_tox
fix python 2.6 build failures
parents
453ef8a4
fd874d08
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
5 deletions
+13
-5
.travis.yml
.travis.yml
+2
-0
README.rst
README.rst
+1
-2
requirements-dev.txt
requirements-dev.txt
+0
-2
tox.ini
tox.ini
+10
-1
No files found.
.travis.yml
View file @
ac69d0f0
...
...
@@ -12,6 +12,8 @@ matrix:
env
:
TOX_ENV=py27-WTForms2
-
python
:
2.7
env
:
TOX_ENV=flake8
-
python
:
2.7
env
:
TOX_ENV=docs-html
-
python
:
3.3
env
:
TOX_ENV=py33-WTForms1
-
python
:
3.3
...
...
README.rst
View file @
ac69d0f0
...
...
@@ -56,8 +56,7 @@ if you think of anything else that should be included, then please make the chan
To build the docs in your local environment, from the project directory::
pip install -r requirements-dev.txt
sudo make html
tox -e docs-html
And if you want to preview any *.rst* snippets that you may want to contribute, go to `http://rst.ninjs.org/ <http://rst.ninjs.org/>`_.
...
...
requirements-dev.txt
View file @
ac69d0f0
...
...
@@ -12,7 +12,5 @@ shapely==1.5.9
geoalchemy2
psycopg2
nose
sphinx
sphinx-intl
coveralls
pylint
tox.ini
View file @
ac69d0f0
[tox]
envlist
=
py{26,27,33,34,35,36}-WTForms{1,2},flake8
envlist
=
py{26,27,33,34,35,36}-WTForms{1,2}
flake8
docs-html
skipsdist
=
true
skip_missing_interpreters
=
true
...
...
@@ -19,3 +22,9 @@ commands =
[testenv:flake8]
deps
=
flake8
commands
=
flake8 flask_admin
[testenv:docs-html]
deps
=
sphinx
sphinx-intl
commands
=
sphinx-build -b html -d build/doctrees doc build/html
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment