Skip to content

Commit

Permalink
Merge ad028c0 into 4da35ba
Browse files Browse the repository at this point in the history
  • Loading branch information
nyergler committed May 16, 2019
2 parents 4da35ba + ad028c0 commit f8fe9d4
Show file tree
Hide file tree
Showing 8 changed files with 368 additions and 24 deletions.
8 changes: 8 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[bumpversion]
current_version = 4.0.0
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:lob/version.py]
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
dist: xenial
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
- 'pypy'
before_install:
- pip install "pip==18.0.0"
- pip install pipenv
install:
- pip install -r requirements.txt
- pipenv install --dev
script:
- nosetests --with-coverage --cover-package=lob
- pipenv run nosetests --with-coverage --cover-package=lob
after_success:
- coveralls
notifications:
Expand Down
18 changes: 18 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[packages]
requests = "*"

[dev-packages]
nose = "*"
"flake8" = "*"
coverage = "*"
coveralls = "*"
bumpversion = "*"
setuptools = "*"
twine = "*"

[requires]
268 changes: 268 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f8fe9d4

Please sign in to comment.