Skip to content

Commit

Permalink
Merge pull request #9 from transferwise/bump_version
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
Samira-El authored Mar 19, 2020
2 parents 12c4693 + 6e64ba6 commit 386f075
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 9 deletions.
21 changes: 17 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,27 @@ jobs:
- run:
name: 'Setup virtualenv'
command: |
mkdir -p ~/.virtualenvs
python3 -m venv ~/.virtualenvs/singer-python
source ~/.virtualenvs/singer-python/bin/activate
python3 -m venv virtualenv
source virtualenv/bin/activate
pip install -U pip setuptools
make install
- run:
name: 'Conflicts check'
command: |
source virtualenv/bin/activate
pip check && echo "No conflicts" || exit 1
- run:
name: 'Pylinting'
command: |
# Need to re-activate the virtualenv
source virtualenv/bin/activate
make pylinting
- run:
name: 'Run tests'
command: |
# Need to re-activate the virtualenv
source ~/.virtualenvs/singer-python/bin/activate
source virtualenv/bin/activate
make test
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ check_prereqs:
install: check_prereqs
python3 -m pip install -e '.[dev]'

test: install
pylinting:
pylint singer -d missing-docstring,broad-except,bare-except,too-many-return-statements,too-many-branches,too-many-arguments,no-else-return,too-few-public-methods,fixme,protected-access

test:
nosetests --with-doctest -v
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()

setup(name="pipelinewise-singer-python",
version='1.1.0',
version='1.1.1',
description="Singer.io utility library - PipelineWise compatible",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -17,7 +17,7 @@
],
url="https://github.com/transferwise/pipelinewise-singer-python",
install_requires=[
'pytz==2018.4',
'pytz==2019.3',
'jsonschema==2.6.0',
'simplejson==3.11.1',
'python-dateutil>=2.6.0',
Expand All @@ -29,8 +29,7 @@
'pylint',
'ipython',
'ipdb',
'nose',
'singer-tools'
'nose'
]
},
packages=['singer'],
Expand Down

0 comments on commit 386f075

Please sign in to comment.