-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from koenedaele/DEV_0.6.0
Prepare 0.6.0 for release
- Loading branch information
Showing
15 changed files
with
443 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
language: python | ||
sudo: false | ||
python: | ||
- 2.7 | ||
- 3.4 | ||
- 3.5 | ||
- 3.6 | ||
- "2.7" | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
services: | ||
- postgresql | ||
env: | ||
- DB="sqlite" SAURL="sqlite:///:memory:" | ||
- DB="postgres" SAURL="postgresql://postgres:postgres@localhost/skosprovider_sqlalchemy" | ||
# - DB="mysql" SAURL="mysql://travis:@localhost/skosprovider_sqlalchemy" | ||
install: | ||
- 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" | ||
script: | ||
- py.test --sqlalchemy_url $SAURL -v --cov skosprovider_sqlalchemy | ||
after_success: coveralls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
SQLAlchemy==1.3.3 | ||
skosprovider==0.6.1 | ||
#-e git+https://github.com/koenedaele/skosprovider.git#egg=skosprovider | ||
SQLAlchemy==1.3.18 | ||
skosprovider==0.7.1 | ||
#-e git+https://github.com/koenedaele/skosprovider.git@DEV_0.7.0#egg=skosprovider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,16 @@ | |
] | ||
|
||
requires = [ | ||
'skosprovider>=0.6.0', | ||
'skosprovider>=0.7.0', | ||
'sqlalchemy', | ||
] | ||
|
||
setup( | ||
name='skosprovider_sqlalchemy', | ||
version='0.5.2', | ||
version='0.6.0', | ||
description='A sqlAlchemy implementation of skosprovider.', | ||
long_description=open('README.rst').read(), | ||
long_description_content_type='text/x-rst', | ||
author='Koen Van Daele', | ||
author_email='[email protected]', | ||
url='http://github.com/koenedaele/skosprovider_sqlalchemy', | ||
|
@@ -39,9 +40,9 @@ | |
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
], | ||
test_suite='nose.collector', | ||
entry_points="""\ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.