Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b1567d8
Implement Jupyter kernel
Vipul-Cariappa Jul 6, 2024
8eda48b
Test Kernel; presently it only builds, we should add tests later
Vipul-Cariappa Jul 6, 2024
627ba51
fix CI
Vipul-Cariappa Jul 6, 2024
3e85b2f
fix CI
Vipul-Cariappa Jul 6, 2024
217343a
fix CI
Vipul-Cariappa Jul 6, 2024
732b5ed
fix CI
Vipul-Cariappa Jul 6, 2024
66f8fc3
CI fix
Vipul-Cariappa Jul 6, 2024
89ba508
CI: Do not modify other jobs
certik Jul 6, 2024
3a55d86
Hide python_kernel behind ifdef
certik Jul 6, 2024
ec94d15
Keep xeus in ci/environment.yml
certik Jul 6, 2024
16f00af
Use micromamba
certik Jul 6, 2024
506a6be
Add xeus-zmq
certik Jul 6, 2024
8362c91
Disable conda info
certik Jul 6, 2024
91eb84e
CI: update Windows build commands
certik Jul 6, 2024
e6574c4
CI: switch to micromamba, update xeus
certik Jul 6, 2024
eed485e
Use lp
certik Jul 6, 2024
d1e230a
Use the old xeus
certik Jul 6, 2024
34613d7
Use xonsh 0.16.0
certik Jul 6, 2024
0c3b95b
Fix Windows test
certik Jul 6, 2024
d1dc5f0
Use latest version
certik Jul 6, 2024
e73253e
Pin the packages
certik Jul 6, 2024
ae16656
Do not upgrade installed packages
certik Jul 6, 2024
e4fa09a
List
certik Jul 6, 2024
81beb7c
Pin packages
certik Jul 6, 2024
ba8a13c
Fix nlohmann_json
certik Jul 6, 2024
1c77ac5
X
certik Jul 6, 2024
c8a80c3
zstd
certik Jul 6, 2024
2ed3ac2
downgrade
certik Jul 6, 2024
e69e069
Pin zstd, zlib
certik Jul 6, 2024
9ec6d6d
X
certik Jul 6, 2024
de257f5
Merge branch 'main' into ci_mamba
certik Jul 6, 2024
d8ea743
XX comment out failing tests
certik Jul 8, 2024
9c5b8ec
XX disable a failing integration test
certik Jul 8, 2024
766e5a6
Merge branch 'ci_mamba' into ci_kernel
certik Jul 8, 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
Do not upgrade installed packages
  • Loading branch information
certik committed Jul 6, 2024
commit ae166560354fb3b5e395fc471e9422e644f6a441
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
- name: Install Windows Conda Packages
if: contains(matrix.os, 'windows')
shell: bash -e -l {0}
run: micromamba install m2-bison=3.0.4 m2-filesystem cmake=3.21.1
run: micromamba install --freeze-installed m2-bison=3.0.4 m2-filesystem cmake=3.21.1

- name: Install Linux / macOS Conda Packages
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
shell: bash -e -l {0}
run: micromamba install bison=3.4 nodejs=18 xeus=1.0.1 nlohmann_json=3.9.1
run: micromamba install --freeze-installed bison=3.4 nodejs=18

# - name: Conda info
# shell: bash -e -l {0}
Expand Down