Skip to content

Commit

Permalink
Merge pull request #96 from knopki/fix-setup-regression
Browse files Browse the repository at this point in the history
fix: workaround python bug in setup.py
  • Loading branch information
blokhin committed Aug 17, 2022
2 parents 279a924 + 23d4694 commit ec14979
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ class CustomInstall(install):
"""Custom install"""

def run(self):
# workaround https://github.com/python/cpython/issues/86813
from concurrent.futures import ThreadPoolExecutor # noqa: F401

def _post_install():
from yascheduler.variables import CONFIG_FILE

Expand Down

0 comments on commit ec14979

Please sign in to comment.