Skip to content

Commit

Permalink
Merge pull request #74 from cwacek/fix/69-versioning
Browse files Browse the repository at this point in the history
Shift tests to use setup install_requires.
  • Loading branch information
cwacek authored Jul 23, 2017
2 parents 8cf05a7 + 922c36d commit 71a6ad0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
python:
- '2.7'
install:
- pip install -r requirements.txt
- pip install tox
script: tox
deploy:
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,12 @@ def parse_requirements(path):
zip_safe=False,
url='http://python-jsonschema-objects.readthedocs.org/',
setup_requires=["setuptools>=18.0.0"],
install_requires=install_requires,
install_requires=[
"inflection~=0.2",
"Markdown==2.4",
"jsonschema~=2.3",
"six>=1.5.2"
],
dependency_links=dependency_links,
cmdclass=versioneer.get_cmdclass(),
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ envlist = py27, py35
commands = coverage run {envbindir}/py.test {posargs}
coverage html --omit=*test* --include=*python_jsonschema_objects*
deps =
-rrequirements.txt
.
coverage
pytest

0 comments on commit 71a6ad0

Please sign in to comment.