Skip to content

Commit

Permalink
Raise min required django version to 1.4.2
Browse files Browse the repository at this point in the history
Has a some nice helpers for 2 to 3 transition, namely, django.utils.six
  • Loading branch information
mfogel committed Jan 27, 2013
1 parent f4893c6 commit b9dcd22
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -6,14 +6,14 @@ python:
env:
- DJANGO='https://github.com/django/django/tarball/stable/1.5.x' DB='postgres'
- DJANGO='https://github.com/django/django/tarball/stable/1.5.x' DB='sqlite'
- DJANGO='django>=1.4,<1.5' DB='postgres'
- DJANGO='django>=1.4,<1.5' DB='sqlite'
- DJANGO='django>=1.4.2,<1.5' DB='postgres'
- DJANGO='django>=1.4.2,<1.5' DB='sqlite'
matrix:
exclude: # python 3 support only for django>=1.5
- python: 3.2
env: DJANGO='django>=1.4,<1.5' DB='postgres'
env: DJANGO='django>=1.4.2,<1.5' DB='postgres'
- python: 3.2
env: DJANGO='django>=1.4,<1.5' DB='sqlite'
env: DJANGO='django>=1.4.2,<1.5' DB='sqlite'
before_install:
- export PIP_USE_MIRRORS=true
install:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -35,7 +35,7 @@ def find_version(*file_paths):
packages=[
'timezone_field',
],
install_requires=['django', 'pytz'],
install_requires=['django>=1.4.2', 'pytz'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down

0 comments on commit b9dcd22

Please sign in to comment.