Henry Schreiner

Results 2521 comments of Henry Schreiner

You should throw SystemExit(n) (n!=0) in setup.py to get a nice (no) traceback from pip. (Or whatever build script your backend uses, this is assuming setuptools)

Almost the entire [PyHEP](https://indico.cern.ch/event/882824/) conference was given as notebook talks; but mostly just scrolling JupyterLab pages. It would be fantastic if RISE would come back for JupyterLab!

This broke the tests. .copytree is not part of pathlib.

Looks like sphinx is loading all extensions that are installed, and you've got one that's not updated. It's not modernsphinxdomain's fault (we don't use this method at all), it's only...

That was cleared a bit ago: https://github.com/scikit-build/moderncmakedomain/blob/main/sphinxcontrib/moderncmakedomain/__init__.py

Any workarounds for "Repository is read only"? I see this on both Safari and Chrome. Does an older version work? I was planning to use it to teach today and...

I was hoping you might. :) I've been doing a binary search through the cross-compiling file (https://github.com/emscripten-core/emscripten/blob/main/cmake/Modules/Platform/Emscripten.cmake) and seeing what I have to disable to make this work. I can...

I can reproduce this in pure CMake: ```cmake cmake_minimum_required(VERSION 3.15...3.26) project(CMCheck LANGUAGES CXX) list(APPEND CMAKE_PREFIX_PATH "${CMAKE_CURRENT_SOURCE_DIR}/pre") list(APPEND CMAKE_FIND_ROOT_PATH "/emsdk/upstream/emscripten") set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) find_package(CheckMe CONFIG REQUIRED) ``` Setting both of these causes...