Thomas Robitaille

Results 433 issues of Thomas Robitaille

I'm currently following the instructions to create an overlay, and the ``inveniomanage database init`` step is failing with the following error: ``` $ inveniomanage database init --user=root --password=$ROOTPW --yes-i-know /Users/tom/miniconda3/envs/asclepias/lib/python2.7/site-packages/sqlalchemy/sql/base.py:291:...

I'm getting an exception when trying to run: ``` $ inveniomanage config set create secret-key Traceback (most recent call last): File "/Users/tom/miniconda3/envs/asclepias/bin/inveniomanage", line 11, in sys.exit(main()) File "/Users/tom/miniconda3/envs/asclepias/lib/python2.7/site-packages/invenio_base/manage.py", line 102,...

Astropy has recently switched to specifying build-time dependencies in a ``pyproject.toml`` file, but this is causing issues with the asv benchmarks: ``` ·· Uninstalling from conda-py3.7-Cython-jinja2-matplotlib3.1-nomkl-numpy1.17-scipy1.3 ·· Building de9db8be for...

question

I am currently running asv as a cron job, and trying to do: ``` asv run ALL --skip-existing-commits --steps=10 ``` However, this only runs 10 commits the first time, and...

enhancement

For the astropy benchmarks, we are running into an error with the memory benchmarks: ``` [ 19.84%] ··· io_ascii.table.TableSuite.mem_table_outputter failed [ 19.84%] ···· Traceback (most recent call last): File "/home/travis/miniconda/envs/test/lib/python3.6/site-packages/asv/benchmark.py",...

bug

Just a random thought (feel free to close this if you disagree) - what about benchmarking the installation time for the package?

idea

The following example works with Python 3.7 but not 3.8, on Windows: ```python from qtconsole.inprocess import QtInProcessKernelManager kernel_manager = QtInProcessKernelManager() kernel_manager.start_kernel() ``` With Python 3.8 I get: ``` Traceback (most...

I am running into an issue in [glue](http://www.glueviz.org) when running tests on CircleCI - it turns out that after creating too many RichJupyterWidget instances, the Python process just hangs. The...

I am trying to launch a Qt console from an app launched from a Qt console (so to simplify, I am trying to launch a Qt console inside a Qt...

It used to be possible to customize the banner of `RichIPythonWidget` using something like: ``` python class MyConsole(RichIPythonWidget): banner = 'Custom banner\n' ``` However, if I now do: ``` python...