Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setuptools/_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import importlib.util
import importlib.machinery

from .py34compat import module_from_spec
from importlib.util import module_from_spec


PY_SOURCE = 1
Expand Down
134 changes: 0 additions & 134 deletions setuptools/command/py36compat.py

This file was deleted.

4 changes: 1 addition & 3 deletions setuptools/command/sdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
import contextlib
from itertools import chain

from .py36compat import sdist_add_defaults

from .._importlib import metadata
from .build import _ORIGINAL_SUBCOMMANDS

Expand All @@ -21,7 +19,7 @@ def walk_revctrl(dirname=''):
yield item


class sdist(sdist_add_defaults, orig.sdist):
class sdist(orig.sdist):
"""Smart sdist that finds anything supported by revision control"""

user_options = [
Expand Down
13 changes: 0 additions & 13 deletions setuptools/py34compat.py

This file was deleted.