Skip to content

Commit

Permalink
feat: Updated pyo3
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidmt committed May 2, 2024
1 parent 18b789e commit ce09cdd
Show file tree
Hide file tree
Showing 10 changed files with 421 additions and 368 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/find_compatible_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

for tag in sys_tags():
print(f"Looking for file matching tag {tag}", file=sys.stderr)
matches = glob.glob(args.package + "*" + str(tag) + "*.whl", root_dir=args.dir)
matches = glob.glob(f"{args.package}*{tag}*.whl", root_dir=args.dir)
if len(matches) == 1:
wheel = matches[0]
break
Expand Down
Loading

0 comments on commit ce09cdd

Please sign in to comment.