Skip to content

Commit

Permalink
Merge pull request #3053 from AndreMiras/feature/rebuild_updated_reci…
Browse files Browse the repository at this point in the history
…pes_fix

🐛 Fix rebuild updated recipes
  • Loading branch information
AndreMiras authored Aug 20, 2024
2 parents 2bb2216 + 80dc7a4 commit 182bec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ci/rebuild_updated_recipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def modified_recipes(branch='origin/develop'):
# using the contrib version on purpose rather than sh.git, since it comes
# with a bunch of fixes, e.g. disabled TTY, see:
# https://stackoverflow.com/a/20128598/185510
git_diff = sh.contrib.git.diff('--name-only', branch)
git_diff = sh.contrib.git.diff('--name-only', branch).split("\n")
recipes = set()
for file_path in git_diff:
if 'pythonforandroid/recipes/' in file_path:
Expand Down
1 change: 1 addition & 0 deletions pythonforandroid/recipes/tiktoken/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ class TiktokenRecipe(RustCompiledComponentsRecipe):
name = 'tiktoken'
version = '0.7.0'
url = 'https://github.com/openai/tiktoken/archive/refs/tags/{version}.tar.gz'
sha512sum = "bb2d8fd5acd660d60e690769e46cf29b06361343ea30e35613d27d55f44acf9834e51aef28f4ff316ef66f2130042079718cea04b2353301aef334cd7bd6d221"
depends = ['regex', 'requests']


Expand Down

0 comments on commit 182bec5

Please sign in to comment.