We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ad2a08 commit 2a890afCopy full SHA for 2a890af
CHANGELOG.rst
@@ -2,6 +2,11 @@
2
Changelog
3
=========
4
5
+3.3.7 (2021-06-23)
6
+------------------
7
+
8
+* Fixed a bug with how ``stdlib`` is detected on Windows (at least).
9
10
3.3.6 (2021-06-23)
11
------------------
12
src/hunter/const.py
@@ -15,8 +15,6 @@
15
SITE_PACKAGES_PATHS.add(sysconfig.get_path(name, scheme))
16
except KeyError:
17
pass
18
-if hasattr(site, 'getsitepackages'):
19
- SITE_PACKAGES_PATHS.update(site.getsitepackages())
20
if hasattr(site, 'getusersitepackages'):
21
SITE_PACKAGES_PATHS.add(site.getusersitepackages())
22
if sys.version_info < (3, 10):
0 commit comments