fixing requirements

This commit is contained in:
Gabriel Falcão 2015-11-10 13:17:51 -05:00
parent fdc68235e3
commit cf40490753
3 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,5 @@
# Steady Mark
> version 0.6.0
> version 0.5.6
[![Build Status](https://secure.travis-ci.org/gabrielfalcao/steadymark.png?branch=master)](http://travis-ci.org/#!/gabrielfalcao/steadymark)
[![instanc.es Badge](https://instanc.es/bin/gabrielfalcao/steadymark.png)](http://instanc.es)
![meme](http://cdn.memegenerator.net/instances/400x/24908847.jpg)
@ -69,10 +69,10 @@ $ steadymark README.md
you can tell steadymark to load a "boot" file before running the tests, it's very useful for hooking up [sure](http://falcao.it/sure) or [HTTPretty](http://falcao.it/HTTPretty)
# Steadymark is on version 0.6.0
# Steadymark is on version 0.5.6
```python
>>> from sure import expect
>>> from steadymark import version
>>> assert expect(version).should.equal("0.6.0")
>>> assert expect(version).should.equal("0.5.6")
```

View File

@ -38,14 +38,14 @@ def get_packages():
return packages
requirements = [
'misaka+=2.0.0',
'misaka==2.0.0',
'sure==1.2.24',
'couleur==0.6.0',
]
setup(name='steadymark',
version='0.6.0',
version='0.5.6',
description=(u'Markdown-based test runner for python. '
'Good for github projects'),
author=u'Gabriel Falcao',
@ -58,5 +58,4 @@ setup(name='steadymark',
},
package_data={
'steadymark': ['COPYING', '*.md'],
},
)
})

View File

@ -25,4 +25,4 @@
# OTHER DEALINGS IN THE SOFTWARE.
from __future__ import unicode_literals
version = '0.6.0'
version = '0.5.6'