Jean-Paul Calderone
Jean-Paul Calderone
Given: ``` { machine = { config, pkgs, ... }: { deployment.targetEnv = "virtualbox"; deployment.virtualbox.memorySize = 8192; # megabytes deployment.virtualbox.vcpu = 1; # number of cpus deployment.virtualbox.headless = true; };...
I have an application that uses `Histogram`. I want to write some tests that assert that my application is putting values into the right buckets of that histogram. To read...
http://towncrier.readthedocs.io/en/actual-freaking-docs/configuration.html says to put "start_line" item in to pyproject.toml The implementation ignores this and uses "start_string" instead.
http://towncrier.readthedocs.io/en/actual-freaking-docs/configuration.html says `fragment_directory` Experimentation and reading the source suggests `directory` is the necessary item.
http://towncrier.readthedocs.io/en/actual-freaking-docs/configuration.html says to use `newsfile` http://towncrier.readthedocs.io/en/actual-freaking-docs/quickstart.html gives an example using `filename`
### What happened? I tried to import an SSH key already configured on my account. First I tried importing by name: ``` terraform import hcloud_ssh_key.mykey myname@myhost ``` but this failed....
https://peps.python.org/pep-0384/ defines the "Stable ABI" for CPython. It claims that all subsequent CPython 3.x releases will support this ABI. Then https://peps.python.org/pep-3149/ and https://peps.python.org/pep-0425/ expand on this to define the "abi3"...
If I have a setup.cfg that contains a "direct reference" (https://www.python.org/dev/peps/pep-0440/#direct-references) like ``` [options] install_requires = tahoe-lafs @ https://github.com/tahoe-lafs/tahoe-lafs/archive/refs/heads/3842.allocate_buckets-without-lease-renewal.zip ``` and I point `mach-nix.buildPythonPackage` at it then the build fails...
I started using Morph at 3856a9c2f733192dee1600b8655715d760ba1803 and stuck with that version for quite a while. For whatever reason, it happened to build with the version of Nixpkgs on my system...
If an SSH connection to a deployment target dies, Morph appears to hang indefinitely, neither retrying nor failing with an error. I recently left a deploy running and came back...