Skip to content

Commit

Permalink
Dropping python 2.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
carlio committed Apr 18, 2015
1 parent 88bf3f5 commit b751804
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install --use-mirrors nose coverage coveralls"
- "pip install --use-mirrors --editable ."
Expand Down
2 changes: 1 addition & 1 deletion dodgy/__pkginfo__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

VERSION = (0, 1, 6)
VERSION = (0, 1, 7)


def get_version():
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@

_short_description = "Dodgy: Searches for dodgy looking lines in Python code"

_install_requires = [
'argparse',
]
_install_requires = []

_classifiers = (
'Development Status :: 2 - Pre-Alpha',
Expand All @@ -18,8 +16,9 @@
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
)

setup(
Expand Down

0 comments on commit b751804

Please sign in to comment.