Tony Zorman
a056af22ac
overrides: add setuptools to python-lsp-ruff
2023-11-15 21:45:52 +13:00
Antoine Pietri
c454b6fddd
fix: use pep508.parseString for requiredPkgs parsing
...
PEP508 supports `requires` lines that have leading/trailing spaces, such
as:
requires = ["poetry-core >=1.7.0"]
Poetry apparently handles this fine, but poetry2nix doesn't. This commit
uses proper parsing with the pep508 library.
2023-11-15 12:27:32 +13:00
renovate[bot]
4b23549650
chore(deps): lock file maintenance
2023-11-13 01:53:49 +00:00
Antoine Pietri
0ee1839348
fix(overrides): add several build system overrides
...
- aiohttp-client-cache
- aiohttp-rpc
- toga
- toga-core
- toga-gtk
- travertino
2023-11-13 11:24:26 +13:00
K900
844e4a6c84
Merge pull request #1413 from flomonster/update-rpds-py
...
overrides: rpds-py 0.11.0 and 0.12.0
2023-11-12 18:18:43 +03:00
Florian Amsallem
16dc105f55
overrides: rpds-py 0.11.0 and 0.12.0
2023-11-12 16:05:12 +01:00
Pegasust
7fa648dad3
Merge remote-tracking branch 'canon/master' into _orjson
2023-11-11 22:37:10 -08:00
ZerataX
84c484b05a
overrides: ruff 0.1.5
2023-11-11 11:53:30 +13:00
Tom Bärwinkel
d41df260ab
overrides: add setuptools to sqlite-migrate
2023-11-10 10:15:04 +13:00
Tom Bärwinkel
d1cb04ed03
overrides: add hatch to python-ulid
2023-11-10 10:15:04 +13:00
Tom Bärwinkel
4f281a51cc
overrides: add flit-core to click-default-group
2023-11-10 10:15:04 +13:00
adisbladis
506262f445
github: Make release blocked by collect
2023-11-09 18:56:19 +13:00
adisbladis
5609722465
templates/app: Add missing pyproject.toml & poetry.lock files
...
We didn't need them before, but as the flake template now refers to
stuff which uses these files to evaluate we must add them to the repo.
2023-11-09 18:56:19 +13:00
adisbladis
3ed06a00cb
templates/app: Add missing pyproject.toml & poetry.lock files
...
We didn't need them before, but as the flake template now refers to
stuff which uses these files to evaluate we must add them to the repo.
2023-11-09 17:51:54 +13:00
K900
f06c8ac9d3
Add inputsFrom to flake example
...
So tools running in devshells actually work
2023-11-09 17:51:54 +13:00
Phillip Cloud
2fc2f80602
chore: fix ruff build
2023-11-09 17:35:08 +13:00
Phillip Cloud
08c8697a11
test: add ruff wheel test
2023-11-09 17:35:08 +13:00
adisbladis
4ccb4976e9
vendor: Bump pyproject.nix
2023-11-08 18:59:21 +13:00
adisbladis
7a001e012c
Remove some obsolete overrides
2023-11-08 18:59:21 +13:00
Kiskae
944dfe4a1f
overrides: fix openai buildsystems
...
08b8179a6b
2023-11-08 11:45:32 +13:00
ZerataX
bf0601d5d9
ruff: add override
2023-11-07 14:49:58 +13:00
ZerataX
23140fef4e
overrides: add build systems
2023-11-07 10:10:39 +13:00
Pegasust
9aee2838b7
chore: remove dev override that wasn't supposed to be committed
2023-11-05 19:34:33 -08:00
Pegasust
6b04148b7f
format: run '.#formatter.$system'
...
format: run '.#formatters.$system'
2023-11-05 19:19:24 -08:00
Pegasust
55f5c120dc
feat(orjson): hashes for 3.9.x
2023-11-05 19:11:22 -08:00
Pegasust
2507b51075
feat(orjson): use github hash to reuse cargo.lock - tested to be backwards compatible (with upstream maturin)
2023-11-05 19:11:22 -08:00
Pegasust
42e2db1157
test(orjson): orjson integration test across seemingly supported versions
2023-11-05 19:11:22 -08:00
Pegasust
69a528f8b8
fix(test/text-generation): upstream peft@HEAD now needs higher version of accelerate, so we relax its req
2023-11-05 19:11:22 -08:00
renovate[bot]
8810f7d31d
chore(deps): lock file maintenance
2023-11-06 00:39:49 +00:00
Pegasust
ce3a7b1f50
ci(flake): collect nix-flake-show, remove nix-flake-check (nix-github-actions already do this)
2023-11-06 10:47:14 +13:00
Pegasust
3f76088b2d
ci(flake): add checks for flake outputs integrity
2023-11-06 10:47:14 +13:00
Pegasust
7a59c42aa2
fix(flake): app flake outputs now evaluates
2023-11-06 10:47:14 +13:00
renovate[bot]
2553decbc0
chore(deps): lock file maintenance
2023-11-03 00:16:17 +00:00
adisbladis
349143fce1
auto_version: Use 2023.11.239149 style scheme
2023-11-03 00:23:00 +13:00
Graham Christensen
a1033070ab
auto_version: make the tags parse under semver
...
SemVer has two rules that the previous scheme violates:
1. major/minor/patch numbers can't start with a leading 0. Changing `%d` to `%-d` removes the leading zero. I also applied it to the year just in case :):
```
>>> print(now.strftime(f"%Y.%m.%d"))
2023.09.01
>>> print(now.strftime(f"%Y.%-m.%-d"))
2023.9.1
```
2. there can't be four dot-separated sections of the version. In this PR, I merge the year and month into one field (with a leading zero on the month!) so the seconds is the "patch" version, like this:
```
>>> print(now.strftime(f"%-Y%m.%-d.{modifier}"))
202309.1.82922
```
2023-11-03 00:23:00 +13:00
Bouke van der Bijl
7389c9af27
Add opencv-contrib-python to build-systems.json
2023-11-03 00:16:03 +13:00
adisbladis
0302506b15
tests.fiona-wheel: Only execute on linux
2023-11-02 22:41:31 +13:00
adisbladis
d3bd930cbf
tests.pyarrow-wheel: Only execute on linux
2023-11-02 22:41:31 +13:00
adisbladis
a3d4e9e731
tests.pyarrow-wheel: Bump lock file
2023-11-02 22:41:31 +13:00
adisbladis
cacc1ebd37
mk-poetry-dep: Use wheel platform filtering from pyproject.nix
2023-11-02 22:41:31 +13:00
adisbladis
2bb79f37eb
vendor: Bump pyproject.nix
2023-11-02 22:41:31 +13:00
Kiskae
566e2cdc8c
overrides: fix constantly > 23.10.0
2023-11-02 10:24:48 +13:00
adisbladis
4099e32cb9
Revert "mk-poetry-dep: Use wheel platform filtering from pyproject.nix"
...
This reverts commit 02b932909d
.
2023-11-01 21:35:51 +13:00
adisbladis
089fd92003
Configure mergify
2023-11-01 21:27:42 +13:00
adisbladis
02b932909d
mk-poetry-dep: Use wheel platform filtering from pyproject.nix
2023-11-01 21:27:42 +13:00
adisbladis
307f2c4c7c
vendor: Bump pyproject.nix
2023-11-01 21:27:42 +13:00
Alexander Holmbäck
f439d199fc
add flit-core to django-filter
2023-11-01 11:06:18 +13:00
adisbladis
d530c394e0
Merge pull request #1389 from jhh/opencv-headless
...
overrides: add opencv-python-headless
2023-11-01 02:38:21 +13:00
Jeff Hutchison
a757ece9d1
overrides: add opencv-python-headless
2023-10-31 08:50:51 -04:00
adisbladis
626111646f
Merge pull request #1386 from nix-community/renovate/lock-file-maintenance
...
chore(deps): lock file maintenance
2023-10-30 17:33:19 +13:00