Marc Garcia

Results 62 issues of Marc Garcia

Currently, only Impala and Spark support DDL. The Impala implementation is in `backends/base`, but it's far from generic. Spark inherits from it, but it needs to change most things. From...

feature
refactor
ddl
backends

Not sure the exact reason, but when running `conda install -c conda-forge pymapd`, the conda solver takes a very long time. And if `pymapd` is in a requirements file with...

Is any project using asv still using mercurial? The library powering the plugin is unmaintained (see #1138), the mercurial code is causing some problems and warnings in the CI, and...

xref #1139 I didn't check in detail, but I guess the vendored json minifier in `asv/extern/minify_json.py` can be replaced with the next approach using simply the `json` standard library module:...

What are others thoughts on using GitHub Actions for the CI? Probably not a huge difference, but seems slightly simpler not to run in cygwin, would allow for Windows+Linux builds,...

Looks like this test is being skipped in the CI, because of the missing `rpy2` dependency: ``` test/test_statistics.py::test_mann_whitney_u_R SKIPPED (Requires rpy2) [ 79%] ``` We should add it, and make...

xref #909 Since we support Python > 3.7 now, we can make use of f-strings, to make code more readable. As an example, the next `asv` code: ```python machine_env_name =...

Tests on the asv generated website are implemented with Selenium. Currently, those tests are skipped in GitHub actions, since no selenium binary is selected. Enabling the tests is as easy...

Planning a new release soon. Besides what's already in master (mostly clean up, and dropping py2), I'm planning to have the next issues. Please comment with any other that it's...

Closes #1200 `asv dev` is literally a shortcut for `asv run --python=same`, so it's not that useful to have. And it caused confusion, as users expected it to also use...