Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5e4f1518ab | ||
|
|
6ae2e9d0c5 | ||
|
|
db8f62cc0b | ||
|
|
a038d86d2c | ||
|
|
1dcf1ae154 |
15
.travis.yml
15
.travis.yml
@@ -5,23 +5,8 @@ python:
|
|||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.5"
|
- "3.5"
|
||||||
- "3.6"
|
- "3.6"
|
||||||
env:
|
|
||||||
- PINNED=TRUE
|
|
||||||
- PINNED=FALSE
|
|
||||||
|
|
||||||
matrix:
|
|
||||||
allow_failures:
|
|
||||||
- python: 2.6
|
|
||||||
env: PINNED=FALSE
|
|
||||||
- python: 2.7
|
|
||||||
env: PINNED=FALSE
|
|
||||||
- python: 3.5
|
|
||||||
env: PINNED=FALSE
|
|
||||||
- python: 3.6
|
|
||||||
env: PINNED=FALSE
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- if [ "${PINNED}" == "FALSE" ]; then python scripts/unpin.py; fi
|
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- pip install -U -r requirements-test.txt
|
- pip install -U -r requirements-test.txt
|
||||||
- pip install -q coverage coveralls --use-wheel
|
- pip install -q coverage coveralls --use-wheel
|
||||||
|
|||||||
@@ -4,6 +4,10 @@ Changelog
|
|||||||
|
|
||||||
This is the changelog for Puppetboard.
|
This is the changelog for Puppetboard.
|
||||||
|
|
||||||
|
0.2.2
|
||||||
|
=====
|
||||||
|
* Ensure Werkzeug <= 0.11.5
|
||||||
|
|
||||||
0.2.1
|
0.2.1
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|||||||
@@ -87,7 +87,7 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item right"><a href="https://github.com/voxpupuli/puppetboard" target="_blank">v0.2.1</a></div>
|
<div class="item right"><a href="https://github.com/voxpupuli/puppetboard" target="_blank">v0.2.2</a></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui grid padding-bottom">
|
<div class="ui grid padding-bottom">
|
||||||
<div class="one wide column"></div>
|
<div class="one wide column"></div>
|
||||||
|
|||||||
3
setup.py
3
setup.py
@@ -9,7 +9,7 @@ if sys.argv[-1] == 'publish':
|
|||||||
os.system('python setup.py sdist upload')
|
os.system('python setup.py sdist upload')
|
||||||
sys.exit()
|
sys.exit()
|
||||||
|
|
||||||
VERSION = "0.2.1"
|
VERSION = "0.2.2"
|
||||||
|
|
||||||
with codecs.open('README.rst', encoding='utf-8') as f:
|
with codecs.open('README.rst', encoding='utf-8') as f:
|
||||||
README = f.read()
|
README = f.read()
|
||||||
@@ -33,6 +33,7 @@ setup(
|
|||||||
"Flask >= 0.10.1",
|
"Flask >= 0.10.1",
|
||||||
"Flask-WTF >= 0.12, <= 0.13",
|
"Flask-WTF >= 0.12, <= 0.13",
|
||||||
"WTForms >= 2.0, < 3.0",
|
"WTForms >= 2.0, < 3.0",
|
||||||
|
"Werkzeug >=0.7, <= 0.11.5",
|
||||||
"pypuppetdb >= 0.3.0, < 0.4.0",
|
"pypuppetdb >= 0.3.0, < 0.4.0",
|
||||||
],
|
],
|
||||||
keywords="puppet puppetdb puppetboard",
|
keywords="puppet puppetdb puppetboard",
|
||||||
|
|||||||
Reference in New Issue
Block a user