Skip to content

Commit

Permalink
remove msys2 detection
Browse files Browse the repository at this point in the history
  • Loading branch information
davidism committed Jul 6, 2023
1 parent af1e8d4 commit 8f019ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -28,6 +28,7 @@ Unreleased
``cls`` parameter is used. :issue:`2294`
- Don't fail when writing filenames to streams with strict errors. Replace invalid
bytes with the replacement character (````). :issue:`2395`
- Remove unnecessary attempt to detect MSYS2 environment. :issue:`2355`


Version 8.1.3
Expand Down
3 changes: 1 addition & 2 deletions src/click/_compat.py
Expand Up @@ -7,12 +7,11 @@
from weakref import WeakKeyDictionary

CYGWIN = sys.platform.startswith("cygwin")
MSYS2 = sys.platform.startswith("win") and ("GCC" in sys.version)
# Determine local App Engine environment, per Google's own suggestion
APP_ENGINE = "APPENGINE_RUNTIME" in os.environ and "Development/" in os.environ.get(
"SERVER_SOFTWARE", ""
)
WIN = sys.platform.startswith("win") and not APP_ENGINE and not MSYS2
WIN = sys.platform.startswith("win") and not APP_ENGINE
auto_wrap_for_ansi: t.Optional[t.Callable[[t.TextIO], t.TextIO]] = None
_ansi_re = re.compile(r"\033\[[;?0-9]*[a-zA-Z]")

Expand Down

0 comments on commit 8f019ba

Please sign in to comment.