Tom Prince

Results 65 issues of Tom Prince

Currently, git-pull-request always guess the branch to push based on the currently checked out branch. When writing automation, it would be useful to specify the branch to push explicitly, so...

enhancement

It appears that: 1. comments before an import line (with no intervening blank line) will be sorted with that import 2. comments on their own line within an multiline import...

```python from hyperlink import URL url1 = URL.from_text(u"http://example.test./,") url2 = URL.from_text(u"http://example.test./%2c") assert url1 != url2 assert url1.to_iri() == url2.to_iri() ``` It seems surprising to me that `to_iri()` provides a level...

I'm leaving this branch with my work-in-progress for using pep517 (both the package and the PEP) to extract package metadata, instead of a patch setuptools. In particular, this should work...

It would be nice if mach-nix supported getting requirements for projects that use `pyproject.toml`. I managed to write a wrapper that can extract the requirements [here](https://gist.github.com/tomprince/9a6cff05222dfaf59577f6b9fd07d0f3), but given that I...

It fails on files like ``` -r base.txt ``` or ``` # # This file is autogenerated by pip-compile # To update, run: # # pip-compile --generate-hashes =(echo requests) #...

Based on #166. This adds a new argument to `machine`, which is the list of node names to build. This also changes `argsFile` to `argsJSON`, for passing the list of...

triaged
needs-review

This allows using the nix portion of morph, without needing to know implementation details of where the nix expression is. I'm not sure if the attributes exposed there want to...

triaged

Given that `network` is used for specifying the description of deployment, as well as the `pkgs` to use, that somewhat obviously can't be used. However, it additionally (appears)[https://github.com/DBCDK/morph/blob/ad13802e59c90d3a6d6c33a0a7cc1ffafbe151af/data/eval-machines.nix#L36) like `defaults`,...

help wanted
triaged

I'm using nixos testing machinery to setup several nixos VMs for ad-hoc testing of a distributed service. I want to persist some state between run (in particular ssh host keys...