Skip to content

Commit

Permalink
use a submodule instead of bower
Browse files Browse the repository at this point in the history
  • Loading branch information
gawel committed Nov 12, 2016
1 parent d9b63f7 commit 17cf6c5
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 27 deletions.
4 changes: 0 additions & 4 deletions .bowerrc

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
impress/static/components/
docs/html
html
.tox
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "impress/static/impressjs"]
path = impress/static/impressjs
url = git@github.com:impress/impress.js.git
16 changes: 11 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
language: python
python:
- "2.7"
language: python
python: 3.5
sudo: false
install:
- pip install tox
script: tox

- pip install tox
script:
- tox
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
15 changes: 0 additions & 15 deletions bower.json

This file was deleted.

2 changes: 1 addition & 1 deletion impress/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div id="impress">
{% block body %} {% endblock %}
</div>
<script src="{{ pathto('_static/components/impress.js/js/impress.js', 1) }}"></script>
<script src="{{ pathto('_static/impressjs/js/impress.js', 1) }}"></script>
<script src="{{ pathto('_static/jquery.js', 1) }}"></script>
<script src="{{ pathto('_static/impress.js', 1) }}"></script>
<script src="{{ pathto('_static/custom.js', 1) }}"></script>
Expand Down
1 change: 1 addition & 0 deletions impress/static/impressjs
Submodule impressjs added at 82bc45
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py33,py34
envlist = py27,py33,py34,py35

[testenv]
changedir={toxinidir}
Expand Down

0 comments on commit 17cf6c5

Please sign in to comment.