Skip to content
This repository has been archived by the owner on Jan 7, 2021. It is now read-only.

Commit

Permalink
Bye bye Python 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Oct 18, 2013
1 parent 96d9758 commit 7c7d0cf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 20 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
language: python
python:
- '2.5'
- '2.6'
- '2.7'
- '3.2'
- '3.3'
install:
- ./install_requirements.sh
- pip install -r requirements.txt --use-mirrors
script:
- pep8 documentcloud
- pyflakes documentcloud
Expand Down
6 changes: 0 additions & 6 deletions install_requirements.sh

This file was deleted.

6 changes: 0 additions & 6 deletions requirements-py25.txt

This file was deleted.

7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,10 @@ def fullsplit(path, result=None):
file_info[0] = '\\PURELIB\\%s' % file_info[0]

dependencies = [
,
'python-dateutil==2.1',
'simplejson==3.3.1',
'six==1.4.1',
]
if sys.version_info < (2, 6):
dependencies.append("python-dateutil==1.5")
else:
dependencies.append("python-dateutil==2.1")

setup(
name='python-documentcloud',
Expand All @@ -97,4 +93,3 @@ def fullsplit(path, result=None):
include_package_data=True,
install_requires=dependencies,
)

0 comments on commit 7c7d0cf

Please sign in to comment.