diff --git a/README.rst b/README.rst index 251cba5f98..47067508fb 100644 --- a/README.rst +++ b/README.rst @@ -37,7 +37,7 @@ Features * Subscription management * Designed for easy implementation of post-registration subscription forms * Single-unit purchases -* Works with Django ~=1.9.1, 1.8 +* Works with Django >= 1.10 * Works with Python 3.5, 3.4, 2.7 * Works with Bootstrap 3 * Built-in migrations diff --git a/djstripe/__init__.py b/djstripe/__init__.py index e8be7b54ef..565f3f72f1 100644 --- a/djstripe/__init__.py +++ b/djstripe/__init__.py @@ -3,18 +3,7 @@ :synopsis: dj-stripe - Django + Stripe Made Easy """ -from __future__ import unicode_literals import pkg_resources -from django import VERSION as django_version - __version__ = pkg_resources.require("dj-stripe")[0].version - - -if django_version < (1, 8): - import warnings - msg = "dj-stripe deprecation notice: Django 1.7 and lower are no longer\n" \ - "supported. Please upgrade to Django 1.8 or higher.\n" \ - "Reference: https://github.com/kavdev/dj-stripe/issues/275" - warnings.warn(msg) diff --git a/docs/index.rst b/docs/index.rst index 14afaff2d1..05494e692c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -9,7 +9,7 @@ Django + Stripe Made Easy * Subscription management * Subscription during registration * Single-unit purchases -* Works with Django ~=1.9.1, 1.8 +* Works with Django >= 1.10 * Works with Python 3.5, 3.4, 2.7 * Works with Bootstrap 3 * Built-in migrations diff --git a/setup.cfg b/setup.cfg index 5e59e7c414..3e0e51345e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,7 +19,6 @@ classifiers = Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Framework :: Django - Framework :: Django :: 1.8 Framework :: Django :: 1.10 [options] @@ -27,7 +26,7 @@ packages = find: include_package_data = True zip_safe = False install_requires = - Django >= 1.8 + Django >= 1.10 django-braces >= 1.9.0 django-model-utils >= 2.5.2 django-polymorphic >= 1.0