File: 1000-lower-dep-versions.patch

package info (click to toggle)
tiktoken 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: python: 1,219; makefile: 17
file content (19 lines) | stat: -rw-r--r-- 547 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Allow older versions of dependencies fancy-regex and bstr.
 Lower versioned build dependencies to versions currently in Debian Sid.
Author: Petter Reinholdtsen <pere@debian.org>
Forwarded: https://github.com/openai/tiktoken/pull/108
Reviewed-By: Petter Reinholdtsen <pere@debian.org>
Last-Update: 2023-04-16

--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,7 @@
 ], optional = true }
 
 # tiktoken dependencies
-fancy-regex = "0.13.0"
+fancy-regex = ">=0.11.0"
 regex = "1.10.3"
 rustc-hash = "1.1.0"
-bstr = "1.5.0"
+bstr = ">=1.5.0"