From af146b996a231b888cfc05dd432a1ab44824000d Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Sun, 26 Nov 2023 11:55:13 -0800 Subject: [PATCH 1/2] Require pycapnp from pypi now that 3.12 wheels are up --- requirements.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 6efe3a8..ef45a7b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,2 @@ networkx -# Currently, no pycapnp wheels are built for 3.12; build it from source using a fork that forces cython<3 -#pycapnp -git+https://github.com/eddieh-xlnx/pycapnp.git@install_requires +pycapnp From aa311d023dbe9f8619a611457fdfbeaa49142d34 Mon Sep 17 00:00:00 2001 From: eddieh-xlnx Date: Sun, 26 Nov 2023 12:11:59 -0800 Subject: [PATCH 2/2] pip to install pre-release for pycapnp 2.0.0b2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 20b4710..0f8e310 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ compile-java: .PHONY: install-python-deps install-python-deps: - pip install -q -r requirements.txt + pip install -q -r requirements.txt --pre # Download and unpack all benchmarks .PHONY: download-benchmarks