Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build/pkgs/gnumake_tokenpool: Update to fix AlarmInterrupt problems #36948

Merged
merged 4 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build/pkgs/gnumake_tokenpool/checksums.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
tarball=gnumake_tokenpool-VERSION-py3-none-any.whl
sha1=a060f03e0306a85bc1a91a450e457be83ed371e9
md5=834ccc4d6d52741c5eabac1bdb8f39b2
cksum=1679797266
sha1=3dfcc8c466c17f974d90694f81f4481c3d84aecc
md5=5dae4c65e9609853085ae1970d4fe143
cksum=612213211
upstream_url=https://pypi.io/packages/py3/g/gnumake_tokenpool/gnumake_tokenpool-VERSION-py3-none-any.whl
2 changes: 1 addition & 1 deletion build/pkgs/gnumake_tokenpool/install-requires.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gnumake-tokenpool
gnumake-tokenpool >= 0.0.4
2 changes: 1 addition & 1 deletion build/pkgs/gnumake_tokenpool/package-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4
7 changes: 4 additions & 3 deletions src/sage/doctest/forker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1806,12 +1806,13 @@ def parallel_dispatch(self):
job_client = None
try:
from gnumake_tokenpool import JobClient, NoJobServer
except ImportError:
pass
else:
try:
job_client = JobClient()
job_client = JobClient(use_cysignals=True)
except NoJobServer:
pass
except ImportError:
pass

source_iter = iter(self.controller.sources)

Expand Down
Loading