Skip to content

Commit

Permalink
remove dependency on distutils
Browse files Browse the repository at this point in the history
  • Loading branch information
kif committed Oct 5, 2023
1 parent 3d8fe21 commit 23fbe22
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyFAI/gui/utils/ProxyAction.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@

__authors__ = ["V. Valls"]
__license__ = "MIT"
__date__ = "16/10/2020"
__date__ = "05/10/2023"

from distutils.version import LooseVersion
def LooseVersion(version):
return tuple(int(i) for i in version.split(".") if i.isdecimal())

from silx.gui import qt

Expand Down

0 comments on commit 23fbe22

Please sign in to comment.