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 695346b commit 99191dcCopy full SHA for 99191dc
setup.py
@@ -24,9 +24,9 @@ def get_version():
24
__version__ = get_version()
25
26
# C Extensions
27
-with_extensions = os.getenv('PENDULUM_EXTENSIONS', False)
+with_extensions = os.getenv('PENDULUM_EXTENSIONS', None)
28
29
-if with_extensions == '1':
+if with_extensions == '1' or with_extensions is None:
30
with_extensions = True
31
32
if hasattr(sys, 'pypy_version_info'):
0 commit comments