Skip to content

Commit

Permalink
Merge pull request #10 from gregoil/feature/python35_support
Browse files Browse the repository at this point in the history
Run tests on Python 3.5 as well
  • Loading branch information
osherdp committed Jun 22, 2018
2 parents c1f3a0f + bb1675e commit ebc6851
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 52 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
language: python
python:
- '3.6'
- "2.7"
- "3.5"
- "3.6"

install: pip install tox coveralls
script: tox
script: tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d .)
after_success: coveralls

deploy:
Expand Down
44 changes: 0 additions & 44 deletions requirements.txt

This file was deleted.

10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Setup file for handling packaging and distribution."""
from setuptools import setup

__version__ = "2.0.1"
__version__ = "2.0.2"

setup(
name="ipdbugger",
Expand All @@ -17,14 +17,20 @@
"future",
"colorama",
"termcolor"],
extras_require={
"dev": ["flake8", "pylint",
"pytest", "pytest-cov",
"mock"]
},
packages=["ipdbugger"],
python_requires=">=2.7",
python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
package_data={'': ['*.xls', '*.xsd', '*.json',
'*.css', '*.xml', '*.rst']},
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5'
'Programming Language :: Python :: 3.6'
],
zip_safe=False
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
envlist = py27,py36

[testenv]

deps =
-r{toxinidir}/requirements.txt

extras = dev
commands =
flake8 setup.py ipdbugger
pylint setup.py ipdbugger
Expand Down

0 comments on commit ebc6851

Please sign in to comment.