Skip to content
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
2 changes: 1 addition & 1 deletion docs/badges/coverage-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/badges/tests-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ channels:
- bioconda
- defaults
dependencies:
- python<3.14
- pip
- numpy
- pandas
Expand Down
6 changes: 4 additions & 2 deletions src/topiary/_private/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ class MockLock():
def __init__(self):
pass

def acquire(self):
pass
def acquire(self,blocking=True,timeout=None):
# Mirror the multiprocessing.Lock proxy interface: return True to
# indicate the (non-existent) lock was acquired.
return True

def release(self):
pass
Expand Down
Loading
Loading