build: remove the --prefer-binary flag

It used to be useful (apparently not so with bookworm), and in fact we
observe it is actually harmful since it provokes a re-downloading of
pypi-hosted things, negating all the previous local setups.

Go figure pip !
1 files changed, 9 insertions(+), 7 deletions(-)

M .build.yml
M .build.yml +9 -7
@@ 10,6 10,7 @@ sources:
   - hg+ssh://hg@hg.sr.ht/~pythonian/tshistory_supervision
   - hg+ssh://hg@hg.sr.ht/~pythonian/tshistory_formula
   - hg+ssh://hg@hg.sr.ht/~pythonian/tshistory_xl
+  - hg+ssh://hg@hg.sr.ht/~pythonian/tsview
   - hg+ssh://hg@hg.sr.ht/~pythonian/tswatch
   - hg+ssh://hg@hg.sr.ht/~pythonian/tshistory_refinery
 secrets:

          
@@ 21,13 22,14 @@ tasks:
       pip3 install numpy==1.23.4
       pip3 install pip --upgrade
       pip install tox wheel setuptools webtest pytest_sa_pg pystuck --quiet
-      pip install -e dbcache --prefer-binary
-      pip install -e tshistory --prefer-binary
-      pip install -e tshistory_supervision --prefer-binary
-      pip install -e tshistory_formula --prefer-binary
-      pip install -e tshistory_xl --prefer-binary
-      pip install -e tswatch --prefer-binary
-      pip install -e tshistory_refinery --prefer-binary
+      pip install -e dbcache
+      pip install -e tshistory
+      pip install -e tshistory_supervision
+      pip install -e tshistory_formula
+      pip install -e tshistory_xl
+      pip install -e tsview
+      pip install -e tswatch
+      pip install -e tshistory_refinery
   - run-tests: |
       export PIP_BREAK_SYSTEM_PACKAGES=1
       export PATH=$PATH:~/.local/bin:/usr/lib/postgresql/15/bin