Jeremiah Rose
Jeremiah Rose
When running the following code, cadquery raises an exception: ``` import cadquery as cq test = ( cq.Workplane("XY") .circle(10) .extrude(20) .faces(">Z") .workplane() .hole(15, 5) .faces(">>Z[1]") .workplane() .hole(10, 5) ) ```...
Just posting this here for future reference, as I couldn't find this solution anywhere in the README or in past issues on this topic. I was able to install cadquery...
Closes https://github.com/dry-rb/dry-system/issues/253 This PR adds 2 new configuration options to the settings provider source: 1. `prefix`: sets the prefix of the environment variables that will be read. E.g with a...
Following on from the discourse conversation [here](https://discourse.dry-rb.org/t/dry-system-settings-provider-source-custom-environment-variable-prefix/1510). When using the settings provider source, it currently isn't possible to assign a prefix to an environment variable name without also having the...
**Describe the bug** I ran the quick install method command described in the readme: ``` /bin/bash -c "$(wget -qO- https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh || curl -fsSL https://raw.githubusercontent.com/rbreaves/kinto/HEAD/install/linux.sh)" ``` After running the command the...
**Problem:** We have an ecosystem that includes bunch of interdependent packages, where half of them are released as Pip packages, and the other half are released as Conda packages. **Example:**...