Simon Li

Results 200 issues of Simon Li

``` $ OMERODIR=/tmp /anaconda3/envs/tmp/bin/omero admin diagnostics ================================================================================ OMERO Diagnostics (admin) 5.6.dev3 ================================================================================ Creating directory /tmp/var Commands: java -version 1.8.0 (/usr/bin/java) Commands: python -V 2.7.10 (/usr/bin/python) Commands: icegridnode --version 3.6.4 (/usr/local/bin/icegridnode)...

See investigation on https://github.com/ome/omero-py/pull/59#issuecomment-547913768 The 5.5.1 tables unit tests depend on the versions of tables and numpy. On CentOS7 the distribution versions are the only combination that passes: - tables...

``` # omero login -s omero.example.org FATAL: Running /venv/bin/omero as root can corrupt your directory permissions. ``` Now that OMERO.py is decoupled the problem with changing directory permissions only affects...

`omero shell` requires IPython. This is big dependency so to keep it optional move `omero shell` into a separate plugin.

`platform` contains some OS information that could be included: ```python import platform for f in dir(platform): pf = getattr(platform, f) if callable(pf) and not f.startswith('_'): try: print('{}: {}'.format(f, pf())) except...

Get rid of annoying travis failures due to forgetting to run flake8 by making everything automatic: - https://black.readthedocs.io/en/stable/index.html - https://black.readthedocs.io/en/stable/version_control_integration.html

It's confusing. See https://forum.image.sc/t/omero-insight-connection-fails/38957/15

### Proposed change OAuthenticator has had some significant changes affecting how access can be configured, including - https://github.com/jupyterhub/oauthenticator/pull/719 - https://github.com/jupyterhub/oauthenticator/pull/735 https://oauthenticator.readthedocs.io/en/latest/topic/allowing.html is missing these new properties. ### Alternative options Do...

enhancement

I thought this used to be possible, but it might be my imagination. https://discourse.jupyter.org/t/installing-binderhub-to-existing-jupyterhub/26561

### Proposed change We have a [`.pre-commit-config.yaml`](https://github.com/jupyterhub/jupyter-server-proxy/blob/main/.pre-commit-config.yaml) config file in this repo, but we don't enforce it. We should enforce it. ### Alternative options Delete `.pre-commit-config.yaml` if we're not going...

enhancement