Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
pkgs/sage-legacy-install-cleaner/setup.py: Restore multiprocessing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoeppe committed Jun 12, 2022
1 parent e802edd commit 8bfdaee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/sage-legacy-install-cleaner/setup.py
Expand Up @@ -9,6 +9,12 @@
from distutils import log
from setuptools import setup

# Work around a Cython problem in Python 3.8.x on macOS
# https://github.com/cython/cython/issues/3262
if os.uname().sysname == 'Darwin':
import multiprocessing
multiprocessing.set_start_method('fork', force=True)

#########################################################
### Set source directory
#########################################################
Expand Down

0 comments on commit 8bfdaee

Please sign in to comment.