Skip to content

Commit

Permalink
Update versioneer to 0.21 .
Browse files Browse the repository at this point in the history
Hopefully fixes support for python 3.11 .
  • Loading branch information
vpelletier committed Dec 1, 2021
1 parent 094ae7d commit 032073e
Show file tree
Hide file tree
Showing 3 changed files with 662 additions and 263 deletions.
5 changes: 2 additions & 3 deletions usb1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,8 @@
import warnings
import weakref
from . import _libusb1 as libusb1
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']
# pylint: disable=wrong-import-order,ungrouped-imports
if sys.platform == 'win32':
from ctypes import get_last_error as get_errno
Expand Down
Loading

0 comments on commit 032073e

Please sign in to comment.