Skip to content

Commit

Permalink
release as django-storages
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneier committed Feb 8, 2016
1 parent 5c2027b commit 7875a75
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
django-storages change log
==========================

1.4 (2016-02-07)
****************

* This package is now released on PyPI as `django-storages`. Please update your requirements files to
`django-storages==1.4`.

1.3.2 (2016-01-26)
******************

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ django-storages
:target: https://travis-ci.org/jschneier/django-storages
:alt: Build Status

.. image:: https://pypip.in/v/django-storages-redux/badge.png
:target: https://pypi.python.org/pypi/django-storages-redux
.. image:: https://pypip.in/v/django-storages/badge.png
:target: https://pypi.python.org/pypi/django-storages
:alt: PyPI Version


Installation
============
Installing from PyPI is as easy as doing::

pip install django-storages-redux
pip install django-storages

If you'd prefer to install from source (maybe there is a bugfix in master that
hasn't been released yet) then the magic incantation you are looking for is::
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ def read(filename):
with open(filename) as f:
return f.read()


def get_requirements_tests():
with open('requirements-tests.txt') as f:
return f.readlines()

setup(
name='django-storages-redux',
name='django-storages',
version=storages.__version__,
packages=['storages', 'storages.backends'],
author='Josh Schneier',
Expand Down
2 changes: 1 addition & 1 deletion storages/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.2'
__version__ = '1.4'

0 comments on commit 7875a75

Please sign in to comment.