Skip to content

Commit

Permalink
update shellfish version
Browse files Browse the repository at this point in the history
  • Loading branch information
jessekrubin committed Jan 10, 2025
1 parent 01a7620 commit c1cbccb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libs/shellfish/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["hatchling"]

[project]
name = "shellfish"
version = "0.5.1"
version = "0.5.2"
description = "shellfish ~ shell & file-system utils"
readme = "README.md"
keywords = ["dgpy", "filesystem", "fs", "shell", "typed"]
Expand Down
2 changes: 1 addition & 1 deletion libs/shellfish/src/shellfish/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
__title__ = "shellfish"
__description__ = "shellfish ~ shell & file-system utils"
__pkgroot__ = __file__.replace("__about__.py", "").rstrip("/\\")
__version__ = "0.5.1"
__version__ = "0.5.2"
11 changes: 10 additions & 1 deletion libs/shellfish/src/shellfish/sh.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@
import sys

from functools import lru_cache
from os import chdir, environ, fspath as _fspath, getcwd, listdir, makedirs, path
from os import (
chdir,
environ,
fspath as _fspath,
getcwd,
listdir,
makedirs,
path as path,
)
from pathlib import Path
from platform import system
from shlex import quote as _quote, split as _shplit
Expand Down Expand Up @@ -253,6 +261,7 @@
"mkenv",
"move",
"mv",
"path",
"path_gen",
"popen_has_pipe_character",
"pstderr",
Expand Down
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c1cbccb

Please sign in to comment.