Removed Python 3.3 polyfill (we already dropped support)

This commit is contained in:
Raphael Michel
2015-09-09 17:53:10 +02:00
parent 7b179f3ea5
commit 181f1fe36d
3 changed files with 1 additions and 8 deletions
+1 -4
View File
@@ -1,7 +1,4 @@
try: # NOQA
from enum import Enum
except ImportError: # NOQA
from flufl.enum import Enum # remove this dependency when support for python <=3.3 is dropped
from enum import Enum
from django.apps import apps
-1
View File
@@ -1,5 +1,4 @@
-r requirements/production.txt
-r requirements/py33.txt
-r requirements/dev.txt
-r requirements/testing.txt
-r requirements/paypal.txt
-3
View File
@@ -1,3 +0,0 @@
# Polyfill for Python <3.4
# Remove this, when Python 3.3 support is dropped
flufl.enum