From cca90cbe45f4c71dc4d9dc231195bbe9c69a678a Mon Sep 17 00:00:00 2001 From: Vidyasagar Rudraram Date: Fri, 20 Mar 2020 13:46:00 +0530 Subject: [PATCH] Upgarded requirements of Django to >= 2.1 --- .travis.yml | 1 + LICENSE | 2 +- docs/conf.py | 2 +- docs/start.rst | 2 +- sandbox/requirements.txt | 2 +- setup.py | 3 ++- 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index c4249b9..9120b5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "2.7" - "3.4" - "3.5" + - "3.7" install: - python setup.py install diff --git a/LICENSE b/LICENSE index 0c2e937..0b4b442 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 MicroPyramid +Copyright (c) 2020 MicroPyramid Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/conf.py b/docs/conf.py index f73da53..1c94435 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,7 +49,7 @@ # General information about the project. project = u'django-simple-pagination' -copyright = u'2016, Micro Pyramid' +copyright = u'2020, Micro Pyramid' author = u'Micro Pyramid' # The version info for the project you're documenting, acts as replacement for diff --git a/docs/start.rst b/docs/start.rst index 92a0557..bb1a606 100644 --- a/docs/start.rst +++ b/docs/start.rst @@ -6,7 +6,7 @@ Requirements ====== ==================== Python >= 2.6 (or Python 3) -Django >= 1.3 +Django >= 2.1 jQuery >= 1.7 ====== ==================== diff --git a/sandbox/requirements.txt b/sandbox/requirements.txt index 56bec17..e8beedb 100644 --- a/sandbox/requirements.txt +++ b/sandbox/requirements.txt @@ -1,2 +1,2 @@ -Django==2.0 +Django>=2.1 django-simple-pagination==1.3 diff --git a/setup.py b/setup.py index a8699a5..df322ae 100644 --- a/setup.py +++ b/setup.py @@ -38,10 +38,11 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.7', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ], install_requires=[ - "Django>=1.6.0", + "Django>=2.1", ], )