Skip to content

Commit

Permalink
ci: Another go at fixing python include path
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsergio committed Nov 28, 2024
1 parent 7cf4d22 commit 12bb3c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci_release_tools
3 changes: 3 additions & 0 deletions update_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

import sys, os

from pathlib import Path
sys.path.append(str(Path(__file__).parent / "ci_release_tools" / "src"))

from ci_release_tools.src.utils import *
from brew_utils import *

Expand Down
7 changes: 6 additions & 1 deletion update_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
# to open a PR against your test tap:
# ./update.py kdreports-qt5.rb 2.3.0 --pr iamsergio/homebrew-tap --remote sergio

import argparse, os
import argparse, os, sys
import hashlib

from pathlib import Path
sys.path.append(str(Path(__file__).parent / "ci_release_tools" / "src"))

from ci_release_tools.src.utils import *
from brew_utils import *

# Returns the sha256 of the .tar.gz file
def get_tarball_sha256(url):
Expand Down

0 comments on commit 12bb3c9

Please sign in to comment.