-
Notifications
You must be signed in to change notification settings - Fork 170
Jupyter Kernel #2764
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
Jupyter Kernel #2764
Conversation
commit b1700b2 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:50:28 2024 +0530 fix commit 1279555 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:38:58 2024 +0530 in previous commit I tested by changing compiler to gcc, still fails in macOS commit 5920f1a Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:28:13 2024 +0530 . commit 81918f1 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:19:22 2024 +0530 . commit f8ed783 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:12:23 2024 +0530 . commit 8f709d1 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:05:16 2024 +0530 . commit 69b50d1 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 15:01:03 2024 +0530 . commit 797f644 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 07:45:37 2024 +0530 fix . commit 7e13673 Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 07:37:19 2024 +0530 fix . commit e18a15c Author: Vipul Cariappa <[email protected]> Date: Mon Jul 8 07:34:19 2024 +0530 CI fix commit de257f5 Merge: 9ec6d6d f414b0f Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 15:03:16 2024 -0600 Merge branch 'main' into ci_mamba commit 9ec6d6d Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 14:58:15 2024 -0600 X commit e69e069 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 14:44:51 2024 -0600 Pin zstd, zlib commit 2ed3ac2 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 14:36:39 2024 -0600 downgrade commit c8a80c3 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 12:16:48 2024 -0600 zstd commit 1c77ac5 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 12:14:14 2024 -0600 X commit ba8a13c Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 12:12:20 2024 -0600 Fix nlohmann_json commit 81beb7c Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 12:10:20 2024 -0600 Pin packages commit e4fa09a Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:58:09 2024 -0600 List commit ae16656 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:54:47 2024 -0600 Do not upgrade installed packages commit e73253e Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:50:47 2024 -0600 Pin the packages commit d1dc5f0 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:47:13 2024 -0600 Use latest version commit 0c3b95b Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:39:46 2024 -0600 Fix Windows test commit 34613d7 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:24:17 2024 -0600 Use xonsh 0.16.0 commit d1e230a Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:22:01 2024 -0600 Use the old xeus commit eed485e Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:19:56 2024 -0600 Use lp commit e6574c4 Author: Ondřej Čertík <[email protected]> Date: Sat Jul 6 11:14:37 2024 -0600 CI: switch to micromamba, update xeus
result.type = EvalResult::unsignedInteger2; | ||
result.u32 = r; | ||
} else { | ||
int16_t r = e->execfn<int16_t>(run_fn); | ||
int16_t r = e->execfn<int>(run_fn); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know why the previous code was incorrect?
Looks like there is some issue with the bit_length implementation (#1836), so it's fine to disable the test. The other macOS interactive issue was fixed. I don't understand exactly the problem, but it looks like something with signed/unsigned. The change in this PR works on all platforms, so it gets us unblocked. Let's merge it, and we can fix the rest of the issues later. |
I am merged this as is, since all tests pass. Now I'll submit a PR to fix the package versions: |
#2756