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

[pull] master from IDSIA:master #24

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
3ec6d81
Autorelease workflow draft (#885)
Qwlouse Jan 25, 2023
aa6a4af
Fix exception causes all over the codebase (#898)
cool-RR Jan 25, 2023
86cbd72
Use GitHub Actions for tests (#896)
thequilo Jan 25, 2023
5581592
Allow *.ipynb files as source files (#899)
thequilo Jan 25, 2023
48c8f38
Version bump for 0.8.4 (#897)
thequilo Jan 25, 2023
e60e3d1
Move release.yml file into workflows folder (#900)
thequilo Jan 25, 2023
42822ed
Update history
thequilo Jan 25, 2023
f7311fc
Use pypa/gh-action-pypi-publish action instead of etils-actions/pypi-…
thequilo Jan 25, 2023
1685e90
Add on_missing="error" to the json.decode call to catch missing class…
ernestum Jan 27, 2023
5f4bb9b
remove nonexistent tool (#905)
zhimin-z Jan 28, 2023
e16b157
Fix starter example (#906)
zhimin-z Jan 28, 2023
0a7320a
Update requirements: jsonpickle version (#911)
alexanderwerning Feb 24, 2023
d668b53
Add setting for default heartbeat interval (#914)
thequilo May 2, 2023
17c5306
Lift upper bound for munch. (#917)
n-gao Jun 19, 2023
58718c0
fix import error (#921)
n-gao Nov 7, 2023
cd90ee1
Version bump 0.8.5 (#922)
thequilo Nov 13, 2023
356c310
Fixes for numpy 2.0 (#928)
thequilo Aug 26, 2024
6b47feb
Fix is_different (#929)
thequilo Aug 26, 2024
02b4e3d
switch from docopt to docopt-ng (#927)
n-gao Aug 26, 2024
0e28284
Version bump 0.8.6 (#931)
thequilo Aug 26, 2024
d728e32
add shape check and default to True if an exception is raised (#933)
n-gao Oct 17, 2024
8562dc8
Pin mongomock (#934)
thequilo Oct 17, 2024
a0bd925
Introducing Sacred Guru on Gurubase.io (#935)
kursataktas Oct 22, 2024
e4e5fd8
Version bump 0.8.7 (#937)
thequilo Nov 26, 2024
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
Prev Previous commit
Next Next commit
fix import error (IDSIA#921)
  • Loading branch information
n-gao authored Nov 7, 2023
commit 58718c0b1c7a4ca75b1f07050985021cfc651f13
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
docopt>=0.3, <1.0
jsonpickle>=2.2.0
munch>=2.5, <4.0
munch>=2.5, <5.0
wrapt>=1.0, <2.0
py-cpuinfo>=4.0
colorama>=0.4
Expand Down
2 changes: 1 addition & 1 deletion sacred/optional.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_tensorflow():
else:
try:
libc = ctypes.cdll.msvcrt # Windows
except OSError:
except (OSError, AttributeError):
libc = ctypes.cdll.LoadLibrary(find_library("c"))


Expand Down