Gijs Molenaar

Results 56 issues of Gijs Molenaar

which unfortunately is not mentioned in the README

Hi! When i try to compile libs3 on a clean Ubuntu 18.04 I run into troubles: ``` λ make build/obj/request.do: Compiling dynamic object src/request.c: In function ‘setup_request’: src/request.c:1056:74: error: ‘%s’...

### Step 1: Are you in the right place? - [x ] I have verified there are no duplicate active or recent bugs, questions, or requests - [ x] I...

Status: Stale

``` $ gcli authorize login: gijzelaerr password: Fatal error has occurred. You can only access your own tokens via Basic AuthenticationArgumentError: You can only access your own tokens via Basic...

``` λ .venv/bin/mypy inpai inpai/params_definition.py:8: error: Cannot find module named 'jsons' inpai/execution/monitors/base_monitor.py:3: error: Cannot find module named 'jsons' inpai/execution/monitors/base_monitor.py:3: note: See https://mypy.readthedocs.io/en/latest/running_mypy.html#missing-imports inpai/execution/monitors/gui_monitor.py:6: error: Cannot find module named 'jsons' inpai/execution/monitors/elasticsearch_stdout_monitor.py:4:...

While all types can be made optional by appending a "?", to make an enum optional it needs to be defined as: ``` type: - "null" - type: enum symbols:...

Currently, there is no easy way to control the names of file and directory data products. As a workaround, we add steps to our workflows that rename files. This looks...

``` λ virtualenv -p python2 venv Running virtualenv with interpreter /usr/bin/python2 New python executable in /tmp/venv/bin/python2 Also creating executable in /tmp/venv/bin/python Installing setuptools, pkg_resources, pip, wheel...done. λ venv/bin/pip install numpy...

The numpy dependency can automatically be installed if you add it to the `setup.py` http://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords @Mytherin

https://www.python.org/dev/peps/pep-0249/#description ```python import monetdblite conn_lite = monetdblite.connect('/tmp/test') cur_lite = conn_lite.cursor() print(cur_lite.execute('SELECT * from tables')) print(cur_lite.description) ``` 44 None ```python import pymonetdb conn = pymonetdb.connect('test') cur = conn.cursor() print(cur.execute('SELECT * from...