Skip to content

Commit

Permalink
build: Remove Python 3.12 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
photron committed Nov 2, 2024
1 parent 1d99749 commit 86cc8ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions software/web/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def main():
pass

print('tfpp...')
for root, dirs, files in pathlib.Path('src').walk(follow_symlinks=True):
for root, dirs, files in os.walk('src', followlinks=True):
for name in files:
src_path = root / name
src_path = pathlib.Path(root) / name

if src_path.parts[:2] == ('src', 'modules') and src_path.parts[2] not in args.modules:
continue
Expand Down

0 comments on commit 86cc8ab

Please sign in to comment.