Update appdirs-1.4.4

This commit is contained in:
JonnyWong16 2021-10-14 20:36:16 -07:00
parent 5f22ad26ad
commit ec3702c358
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -13,8 +13,8 @@ See <http://github.com/ActiveState/appdirs> for details and usage.
# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html
# - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
__version_info__ = (1, 4, 3)
__version__ = '.'.join(map(str, __version_info__))
__version__ = "1.4.4"
__version_info__ = tuple(int(segment) for segment in __version__.split("."))
import sys