Skip to content

Commit

Permalink
Drop Python 2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
System-Arch authored Dec 22, 2022
1 parent 30ecd01 commit 656d687
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions recipes/msys2/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,9 @@
import shutil
import subprocess
import errno
import ctypes

try:
import ctypes
except ImportError:
pass
except ValueError:
pass

required_conan_version = ">=1.47.0"

required_conan_version = ">=1.49.0"

class lock:
def __init__(self):
Expand All @@ -39,7 +32,6 @@ def close(self):

__del__ = close


class MSYS2Conan(ConanFile):
name = "msys2"
description = "MSYS2 is a software distro and building platform for Windows"
Expand Down

0 comments on commit 656d687

Please sign in to comment.