Skip to content

Commit 6e4e22d

Browse files
committed
Pin azure version to before 1.0.0
There were some major breaking changes in 1.0.0, this allows us to start working on #3 This also bumps the version number to 0.0.4, the last in the 0.0 line.
1 parent 3c58c34 commit 6e4e22d

File tree

3 files changed

+30
-29
lines changed

3 files changed

+30
-29
lines changed

azure_storage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.3"
1+
__version__ = "0.0.4"

azure_storage/storage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
try:
88
from django.utils.deconstruct import deconstructible
99
except ImportError:
10-
#Support for django 1.7 and below
10+
# Support for django 1.7 and below
1111
def deconstructible(func):
1212
return func
1313

setup.py

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,32 @@
88
os.chdir(PACKAGE_DIR)
99

1010

11-
setup(name='django-azure-storage',
12-
version=__version__,
13-
url="https://github.com/Rediker-Software/django-azure-storage",
14-
author="Kevin Brown",
15-
author_email="[email protected]",
16-
description="Django storage backends for Windows Azure blob storage.",
17-
license="MIT",
18-
packages=find_packages(exclude=["tests*", ]),
19-
include_package_data=True,
20-
install_requires=[
21-
'Django>=1.3',
22-
'azure>=0.7.0',
23-
],
24-
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
25-
classifiers=[
26-
'Environment :: Web Environment',
27-
'Framework :: Django',
28-
'Intended Audience :: Developers',
29-
'License :: OSI Approved :: MIT License',
30-
'Programming Language :: Python',
31-
'Programming Language :: Python :: 2.6',
32-
'Programming Language :: Python :: 2.7',
33-
'Programming Language :: Python :: 3',
34-
'Programming Language :: Python :: 3.2',
35-
'Programming Language :: Python :: 3.3',
36-
'Programming Language :: Python :: 3.4',
37-
]
11+
setup(
12+
name='django-azure-storage',
13+
version=__version__,
14+
url="https://github.com/Rediker-Software/django-azure-storage",
15+
author="Kevin Brown",
16+
author_email="[email protected]",
17+
description="Django storage backends for Windows Azure blob storage.",
18+
license="MIT",
19+
packages=find_packages(exclude=["tests*", ]),
20+
include_package_data=True,
21+
install_requires=[
22+
'Django>=1.3',
23+
'azure>=0.7.0,<1.0.0',
24+
],
25+
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
26+
classifiers=[
27+
'Environment :: Web Environment',
28+
'Framework :: Django',
29+
'Intended Audience :: Developers',
30+
'License :: OSI Approved :: MIT License',
31+
'Programming Language :: Python',
32+
'Programming Language :: Python :: 2.6',
33+
'Programming Language :: Python :: 2.7',
34+
'Programming Language :: Python :: 3',
35+
'Programming Language :: Python :: 3.2',
36+
'Programming Language :: Python :: 3.3',
37+
'Programming Language :: Python :: 3.4',
38+
]
3839
)

0 commit comments

Comments
 (0)