-
Notifications
You must be signed in to change notification settings - Fork 843
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f7f69d
commit e060298
Showing
16 changed files
with
302 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[project] | ||
name = "tiktoken" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
description = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
authors = [{name = "Shantanu Jain"}, {email = "[email protected]"}] | ||
dependencies = ["regex>=2022.1.18", "requests>=2.26.0"] | ||
optional-dependencies = {blobfile = ["blobfile>=2"]} | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
|
||
[project.urls] | ||
homepage = "https://github.com/openai/tiktoken" | ||
|
@@ -24,7 +24,7 @@ build-verbosity = 1 | |
|
||
linux.before-all = "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y" | ||
linux.environment = { PATH = "$PATH:$HOME/.cargo/bin" } | ||
macos.before-all = "rustup target add aarch64-apple-darwin" | ||
macos.before-all = "rustup target add aarch64-apple-darwin x86_64-apple-darwin" | ||
|
||
skip = [ | ||
"*-manylinux_i686", | ||
|
Oops, something went wrong.