Skip to content

Commit

Permalink
Updating support Django versions and bumping version number
Browse files Browse the repository at this point in the history
  • Loading branch information
krischer committed Oct 25, 2014
1 parent 7894f6e commit c8aa8c1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 13 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## django-plugins

[![Build Status](https://travis-ci.org/krischer/django-plugins.svg?branch=master)](https://travis-ci.org/krischer/django-plugins) || Latest version: **0.2.4**
[![Build Status](https://travis-ci.org/krischer/django-plugins.svg?branch=master)](https://travis-ci.org/krischer/django-plugins) || Latest version: **0.2.5**

`django-plugins` provides functionality for Django apps to make them more
reusable.
Expand All @@ -13,7 +13,11 @@ reusable.

### Installation

`django-plugins` is currently tested with Python **2.7**, **3.2**, **3.3**, and **3.4** along with Django versions **1.5.8** and **1.6.5**. It might well work with other versions. See the [Travis build matrix](https://travis-ci.org/krischer/django-plugins) for detailed information regarding the latest master.
`django-plugins` is currently tested with Python **2.7**, **3.2**, **3.3**, and
**3.4** along with Django versions **1.6.8** and **1.7.1**. It might well work
with other versions. See the [Travis build
matrix](https://travis-ci.org/krischer/django-plugins) for detailed information
regarding the latest master.


Installation works via `pip`:
Expand Down
5 changes: 1 addition & 4 deletions djangoplugins/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@

from django.conf import settings

if django.VERSION <= (1, 5):
from django.conf.urls.defaults import include, patterns
else:
from django.conf.urls import include, patterns
from django.conf.urls import include, patterns

from django.utils.importlib import import_module

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.2.4'
version = '0.2.5'
# The full verson, including alpha/beta/rc tags.
release = '0.2.4'
release = '0.2.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ How to use it in your app?
--------------------------

``django-plugins`` is currently tested with Python **2.7**, **3.2**, **3.3**,
and **3.4** along with Django versions **1.5.8** and **1.6.5**. It might well
and **3.4** along with Django versions **1.6.8** and **1.7.1**. It might well
work with other versions.

Installation works via ``pip``:
Expand Down
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ def read_docs(filename):
long_description = \
"""``django-plugins`` provides functionality for Django apps to make them more reusable.
Originally developed by Mantas Zimnickas ([email protected]).
Home page
http://pypi.python.org/pypi/django-plugins
Expand All @@ -22,12 +24,12 @@ def read_docs(filename):
long_description += read_docs('CHANGES.rst')

setup(name='django-plugins',
version='0.2.4',
author='Mantas Zimnickas',
author_email='sirexas@gmail.com',
version='0.2.5',
author='Lion Krischer',
author_email='lion.krischer@googlemail.com',
packages=find_packages(exclude=['sample-project']),
install_requires=[
'django>=1.5',
'django>=1.6',
],
url='https://github.com/krischer/django-plugins',
download_url='http://pypi.python.org/pypi/django-plugins',
Expand Down

0 comments on commit c8aa8c1

Please sign in to comment.