aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/__init__.py
diff options
context:
space:
mode:
authorBen Sturmfels <ben@sturm.com.au>2021-03-03 21:40:10 +1100
committerBen Sturmfels <ben@sturm.com.au>2021-03-03 21:40:10 +1100
commit83429a8658986ccd1c54e7085d5df31b01fe16fc (patch)
treecbba6b424cdfc9c5869038bd0069edd82a50c830 /mediagoblin/__init__.py
parentc5a4eb8da8d3000d98c4ae684193322da3d6af10 (diff)
downloadmediagoblin-83429a8658986ccd1c54e7085d5df31b01fe16fc.tar.lz
mediagoblin-83429a8658986ccd1c54e7085d5df31b01fe16fc.tar.xz
mediagoblin-83429a8658986ccd1c54e7085d5df31b01fe16fc.zip
Drop Python 2 installation support.
Diffstat (limited to 'mediagoblin/__init__.py')
-rw-r--r--mediagoblin/__init__.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/mediagoblin/__init__.py b/mediagoblin/__init__.py
index d4ecd745..88dedd28 100644
--- a/mediagoblin/__init__.py
+++ b/mediagoblin/__init__.py
@@ -14,16 +14,4 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-import warnings
-
-import six
-
from mediagoblin._version import __version__
-
-
-if six.PY2:
- warnings.warn(
- "MediaGoblin's Python 2 support will be removed in the next"
- " release. Please consider switching to Python 3.",
- DeprecationWarning,
- )