Skip to content

Commit

Permalink
Update for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
koenedaele committed Aug 11, 2016
1 parent f5516bc commit d50874e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ env:
- DB="postgres" SAURL="postgresql://postgres:postgres@localhost/skosprovider_sqlalchemy"
# - DB="mysql" SAURL="mysql://travis:@localhost/skosprovider_sqlalchemy"
install:
- python setup.py -q develop
- pip install -r requirements-dev.txt
- python setup.py -q develop
before_script:
- "if [[ $DB = 'postgres' ]]; then psql -U postgres -c 'create database skosprovider_sqlalchemy'; fi"
- "if [[ $DB = 'mysql' ]]; then mysql -e 'create database skosprovider_sqlalchemy'; fi"
Expand Down
2 changes: 1 addition & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.5.0 (2015-??-??)
0.5.0 (2016-08-11)
------------------

* Update to skosprovider 0.6.0
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

# General information about the project.
project = u'Skosprovider_sqlalchemy'
copyright = u'2013-2015, Koen Van Daele'
copyright = u'2013-2016, Koen Van Daele'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
SQLAlchemy==1.0.13
-e git+https://github.com/koenedaele/skosprovider.git#egg=skosprovider
SQLAlchemy==1.0.14
skosprovider==0.6.0
#-e git+https://github.com/koenedaele/skosprovider.git#egg=skosprovider
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
]

requires = [
'skosprovider>=0.4.2',
'skosprovider>=0.6.0',
'sqlalchemy',
]

setup(
name='skosprovider_sqlalchemy',
version='0.5.0.dev0',
version='0.5.0',
description='A sqlAlchemy implementation of skosprovider.',
long_description=open('README.rst').read(),
author='Koen Van Daele',
Expand Down
12 changes: 3 additions & 9 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,15 @@
envlist = py27, py33, py34, py35, cover

[testenv]
commands =
python setup.py develop
commands =
pip install -r requirements-dev.txt
py.test tests

[testenv:py26]
commands =
python setup.py develop
pip install -r requirements-dev.txt
py.test tests

[testenv:cover]
basepython =
python2.7
commands =
python setup.py develop
commands =
pip install -r requirements-dev.txt
python setup.py develop
py.test --cov skosprovider_sqlalchemy --cov-report term-missing tests

0 comments on commit d50874e

Please sign in to comment.