diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-08-10 21:48:58 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-08-10 21:55:47 +0900 |
| commit | 7193656b6a7b5e41a3d87d1b7012361e17986194 (patch) | |
| tree | 692b419453060f15fcda4563b1cbad49deafafd2 /internal/rosa/package/python/package.az | |
| parent | 7d86e19c07b3a76cbba08dd209dc6bcea6067029 (diff) | |
internal/rosa: improve helper bindings
This uses more intuitive names for some arguments and inverts their default value. Slices and nil-capable strings replace skip arguments.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/python/package.az')
| -rw-r--r-- | internal/rosa/package/python/package.az | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/internal/rosa/package/python/package.az b/internal/rosa/package/python/package.az index eb159e10..dc1e3fca 100644 --- a/internal/rosa/package/python/package.az +++ b/internal/rosa/package/python/package.az @@ -162,7 +162,7 @@ package python-setuptools { // error: invalid command 'dist_info' buildIsolation = true; // pytest circular dependency - skipCheck = true; + check = nil; }; runtime = [ python ]; @@ -212,7 +212,7 @@ package python-vcs-versioning { // upstream is monorepo of two packages (setuptools-scm) append = [ "vcs-versioning" ]; // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ @@ -246,7 +246,7 @@ package python-setuptools-scm { // upstream is monorepo of two packages append = [ "setuptools-scm" ]; // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ @@ -276,7 +276,7 @@ package python-flit-core { // upstream has other unused packages with many dependencies append = [ "flit_core" ]; // pytest circular dependency - skipCheck = true; + check = nil; }; runtime = [ python ]; @@ -296,7 +296,7 @@ package python-packaging { exec = pip { // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ python-flit-core ]; @@ -317,7 +317,7 @@ package python-pathspec { exec = pip { // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ python-flit-core ]; @@ -338,7 +338,7 @@ package python-trove-classifiers { exec = pip { // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ python-setuptools ]; @@ -363,7 +363,7 @@ package python-pluggy { exec = pip { // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ python-setuptools-scm ]; @@ -386,7 +386,7 @@ package python-hatchling { // upstream has other unused packages with many dependencies append = [ "backend" ]; // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ @@ -418,7 +418,7 @@ package python-pygments { exec = pip { // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ python-hatchling ]; @@ -443,7 +443,7 @@ package python-iniconfig { exec = pip { // pytest circular dependency - skipCheck = true; + check = nil; }; inputs = [ python-setuptools-scm ]; @@ -468,7 +468,7 @@ package python-pytest { exec = pip { // many dependencies - skipCheck = true; + check = nil; }; inputs = [ |
