Skip to content

Commit

Permalink
update utz
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-williams committed Dec 27, 2024
1 parent 7f11227 commit e3a97a4
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e . bmdf
cache: pip
cache-dependency-path: 'requirements*.txt'
- run: pip install -e . -r requirements-ci.txt
- name: Set up README example tests
run: |
seq 10 > 1.txt
Expand Down
2 changes: 1 addition & 1 deletion qmdx/comm_x/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def main(
cmds2=[ f'{first} {path2}', *rest ],
verbose=verbose,
shell=not no_shell,
shell_executable=shell_executable,
executable=shell_executable,
)
else:
process.run(['comm', path1, path2])
2 changes: 1 addition & 1 deletion qmdx/diff_x/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def main(
cmds2=[ f'{first} {path2}', *rest ],
verbose=verbose,
shell=not no_shell,
shell_executable=shell_executable,
executable=shell_executable,
)
else:
subprocess.run(['diff', *diff_args, path1, path2])
2 changes: 1 addition & 1 deletion qmdx/git_diff_x/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def main(
cmds2=cmds2,
verbose=verbose,
shell=not no_shell,
shell_executable=shell_executable,
executable=shell_executable,
)
else:
process.run(['git', 'diff', *diff_args, refspec, '--', path])
2 changes: 1 addition & 1 deletion qmdx/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def join_pipelines(
cmds,
pipe,
wait=False,
shell_executable=shell_executable,
executable=shell_executable,
**kwargs,
)

Expand Down
1 change: 1 addition & 0 deletions requirements-ci.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bmdf>=0.3.6
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
click
utz
utz>=0.12.2

0 comments on commit e3a97a4

Please sign in to comment.