Daniel Pinyol
Daniel Pinyol
I'd like to have a M.m.b(_RCX) format for releases and RCs, and a format DEV-ticket-SNAPSHOT for snapshots. Obviously to switch between one and the other format I'd need to do...
I see this error in pycharm logs. Indeed black-pycharm.zip does not look like a correct zip. it cannot be opened with unzip ``` 2019-11-29 11:10:35,151 [ 4602] INFO - m.intellij.util.lang.ClassPath...
create_sysimage with no arguments works (though I get BUG_REPORT message) ``` create_sysimage(nothing; sysimage_path="valgrind-sysimg.so") BUG_REPORT using Pkg; Pkg.precompile() BUG_REPORT ⣠ [00m:40s] PackageCompiler: compiling incremental system image ``` However, if I call...
Create a package with just this ``` module kwarg f(;arg) = 3 end ``` run with julia 1.7.3 (it works fine with 1.8rc1) `report_package("kwarg")` You'll get this error ``` ═════...
I think deepEqual should be mentioned in the project main readme. It's easy that developers think that "when()" matches for argument equality instead of identity, and diagnosing the problem is...
Hi, I can reproduce a hang (no cpu activity) with the following code on 1.8rc1, 1.8rc3 & 1.9dev. I'm running on Ubuntu 21.10, but I can also reproduce it on...
**Describe the bug** When a column is a reserver keyword (such as 'time'), I get "Invalid FilterExpression: Attribute name is a reserved keyword; reserved keyword: time" **To Reproduce** 1. Create...
Added support for "threads" and "min-optlevel" julia options. Now all long opts are generated with "--arg=val" instead of "--arg val" since julia required arguments support both syntaxes, but optional arguments...
Fixes #480
This is because pyjulia uses ArgumentsParser to parse --home & --sysimage, but it get the optimize value as an int instead of a string. I'll submit a PR