Skip to content

Commit eafcfbe

Browse files
authored
Merge branch 'main' into undo
2 parents 6f7d3f1 + 97daaeb commit eafcfbe

File tree

7 files changed

+404
-108
lines changed

7 files changed

+404
-108
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ endif()
9191

9292
set(xeus_REQUIRED_VERSION 5.0.0)
9393
set(xeus_zmq_REQUIRED_VERSION 3.0.0)
94-
set(CppInterOp_REQUIRED_VERSION 1.5.0)
94+
set(CppInterOp_REQUIRED_VERSION 1.7.0)
9595

9696
if (NOT TARGET xeus AND NOT TARGET xeus-static)
9797
find_package(xeus ${xeus_REQUIRED_VERSION} REQUIRED)

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ minutes of past meetings can be found on our
1818
## Setting up a development environment
1919

2020
First, you need to fork the project. After you have done this clone your forked repo. You can do this by
21-
executing the folowing
21+
executing the following
2222

2323
```bash
2424
git clone https://github.com/<your-github-username>/xeus-cpp.git
@@ -35,7 +35,7 @@ micromamba create -f environment-dev.yml -y
3535
micromamba activate xeus-cpp
3636
```
3737

38-
You are now in a position to install xeus-cpp into this envirnoment. You can do this by executing
38+
You are now in a position to install xeus-cpp into this environment. You can do this by executing
3939

4040
```bash
4141
mkdir build
@@ -61,7 +61,7 @@ pytest -sv test_xcpp_kernel.py
6161
## Setting up a development environment (wasm instructions)
6262

6363
First, you need to fork the project. After you have done this clone your forked repo. You can do this by
64-
executing the folowing
64+
executing the following
6565

6666
```bash
6767
git clone https://github.com/<your-github-username>/xeus-cpp.git

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ http://xeus-cpp.readthedocs.io
138138

139139
| `xeus-cpp` | `xeus-zmq` | `CppInterOp` | `pugixml` | `cpp-argparse`| `nlohmann_json` |
140140
|------------|-----------------|--------------|-----------|---------------|-----------------|
141-
| main | >=3.0.0,<4.0.0 | >=1.5.0 | ~1.8.1 | >=3.0,<4.0 | >=3.11.3,<4.0 |
141+
| main | >=3.0.0,<4.0.0 | >=1.7.0 | ~1.8.1 | >=3.0,<4.0 | >=3.12.0,<4.0 |
142142
| 0.6.0 | >=3.0.0,<4.0.0 | >=1.5.0 | ~1.8.1 | <3.1 | >=3.11.3,<4.0 |
143143
| 0.5.0 | >=3.0.0,<4.0.0 | >=1.3.0 | ~1.8.1 | <3.1 | >=3.11.3,<4.0 |
144144

docs/source/InstallationAndUsage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Once the Jupyter Lite site has built you can test the website locally by executi
100100
Installing from conda-forge
101101
===========================
102102

103-
If you have conda installed then you can install xeus-cpp using the follwing command
103+
If you have conda installed then you can install xeus-cpp using the following command
104104

105105
.. code-block:: bash
106106

notebooks/smallpt.ipynb

Lines changed: 395 additions & 96 deletions
Large diffs are not rendered by default.

share/xeus-cpp/tagfiles/cppreference-doxygen-web.tag

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38138,8 +38138,8 @@
3813838138
</member>
3813938139
<member kind="function">
3814038140
<type>T</type>
38141-
<name>select_on_container_copy_contruction</name>
38142-
<anchorfile>cpp/memory/polymorphic_allocator/select_on_container_copy_contruction</anchorfile>
38141+
<name>select_on_container_copy_construction</name>
38142+
<anchorfile>cpp/memory/polymorphic_allocator/select_on_container_copy_construction</anchorfile>
3814338143
<anchor></anchor>
3814438144
<arglist>(T... args)</arglist>
3814538145
</member>

test/test_xcpp_kernel.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ def test_codecomplete(self) -> None:
3535
reply = self.get_non_kernel_info_reply(timeout=1)
3636
assert reply is not None
3737
self.assertEqual(reply["msg_type"], "complete_reply")
38-
if platform.system() == 'Windows':
39-
self.assertEqual(str(reply["content"]["matches"]), "['fabs', 'fabsf', 'fabsl', 'float', 'foo']")
40-
else:
41-
self.assertEqual(str(reply["content"]["matches"]), "['float', 'foo']")
38+
self.assertEqual(reply["content"]["matches"], ['float', 'foo'])
4239
self.assertEqual(reply["content"]["status"], "ok")
4340

4441
# Continuation

0 commit comments

Comments
 (0)