Skip to content

Commit 99191dc

Browse files
committed
Reactivates C extensions
1 parent 695346b commit 99191dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ def get_version():
2424
__version__ = get_version()
2525

2626
# C Extensions
27-
with_extensions = os.getenv('PENDULUM_EXTENSIONS', False)
27+
with_extensions = os.getenv('PENDULUM_EXTENSIONS', None)
2828

29-
if with_extensions == '1':
29+
if with_extensions == '1' or with_extensions is None:
3030
with_extensions = True
3131

3232
if hasattr(sys, 'pypy_version_info'):

0 commit comments

Comments
 (0)