Skip to content

Commit

Permalink
bump version to 0.9.0a0
Browse files Browse the repository at this point in the history
fix install_requires python_version syntax
  • Loading branch information
jheld committed Jan 3, 2018
1 parent a9aeef6 commit e3f9030
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Basic package information:
name='django-twilio',
version='0.8.0',
version='0.9.0a0',
packages=find_packages(),

# Packaging options:
Expand All @@ -20,9 +20,9 @@
install_requires=[
'setuptools>=36.2',
'twilio>=6.3.0,<7',
"Django>=1.8,<1.9 ; python_version='3.3'",
"Django>=1.8,<2 ; python_version<'3.4'",
"Django>=1.8,<2.1 ; python_version>='3.4'",
'Django>=1.8,<1.9;python_version=="3.3"',
'Django>=1.8,<2;python_version<"3.4"',
'Django>=1.8,<2.1;python_version>="3.4"',
'django-phonenumber-field>=0.6',
],

Expand Down

0 comments on commit e3f9030

Please sign in to comment.