File: drop-generate-import-lib.patch

package info (click to toggle)
pendulum 3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,704 kB
  • sloc: python: 18,758; makefile: 41
file content (25 lines) | stat: -rw-r--r-- 708 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From: Colin Watson <cjwatson@debian.org>
Date: Tue, 17 Mar 2026 10:21:35 +0000
Subject: Drop generate-import-lib feature

This is only needed for Windows, and isn't available in the Debian pyo3
packaging.

Last-Update: 2026-03-17
---
 rust/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index 097321f..c412b08 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -14,7 +14,7 @@ strip = true
 overflow-checks = false
 
 [dependencies]
-pyo3 = { version = "0.27", features = ["extension-module", "generate-import-lib"] }
+pyo3 = { version = "0.27", features = ["extension-module"] }
 
 [features]
 extension-module = ["pyo3/extension-module"]