Skip to content

Commit

Permalink
try to use python37 base python module
Browse files Browse the repository at this point in the history
  • Loading branch information
MacHu-GWU committed Dec 20, 2023
1 parent 8977c70 commit ba846f2
Show file tree
Hide file tree
Showing 10 changed files with 1,565 additions and 12 deletions.
3 changes: 2 additions & 1 deletion pathlib_mate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
import os

try:
from .pathlib2 import Path, WindowsPath, PosixPath
# from .pathlib2 import Path, WindowsPath, PosixPath
from .python311_pathlib import Path, WindowsPath, PosixPath

PathCls = WindowsPath if os.name == "nt" else PosixPath
except ImportError as e: # pragma: no cover
Expand Down

0 comments on commit ba846f2

Please sign in to comment.