Skip to content

Commit

Permalink
Updates to support Django 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcohen02 committed Jan 18, 2020
1 parent a9eadfa commit fab6bc8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Django>=1.11
djangorestframework>=3.9.1
django-storages>=1.7.1
django-storages>=1.8
httpretty==0.9.6
shortuuid==0.5.0
six==1.14.0
sphinx==1.8.2
sphinx_rtd_theme==0.4.2
sphinx-prompt==1.0.0
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="django-drf-filepond",
version="0.3.0",
version="0.4.0",
description="Filepond server app for Django REST Framework",
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -22,12 +22,14 @@
include_package_data=True,
install_requires=[
"Django<2.0.0;python_version=='2.7'",
"Django<3.0.0;python_version>='3.5'",
"Django<3.0.0;python_version=='3.5'",
"Django>=3.0.2;python_version>='3.6'",
"djangorestframework==3.9.3;python_version=='2.7'",
"djangorestframework>=3.9.3;python_version>='3.5'",
"shortuuid>=0.5.0",
"requests>=2.20.1",
"django-storages>=1.7.1"
"django-storages>=1.8",
"six>=1.14.0"
],
tests_require=[
"nose",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from django.test import TestCase
from django.conf import settings
from django.utils.six.moves import reload_module
from six.moves import reload_module

from django_drf_filepond import views
import django_drf_filepond
Expand Down

0 comments on commit fab6bc8

Please sign in to comment.