Skip to content

Commit

Permalink
Move Python 3.8 compatibility logic into the compat package.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jan 20, 2024
1 parent 3166619 commit 61c3fa5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pip_run/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from jaraco.functools import bypass_when
from more_itertools import locate, split_at

from ._py38compat import files
from .compat.py38 import files


def _is_python_arg(item: str):
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pip_run/deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import packaging.requirements
from jaraco.context import suppress

from ._py38compat import subprocess_path as sp
from .compat.py38 import subprocess_path as sp


class Install(types.SimpleNamespace):
Expand Down

0 comments on commit 61c3fa5

Please sign in to comment.