Skip to content

Commit

Permalink
add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed May 18, 2023
1 parent a8653dc commit eb82b14
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
5 changes: 5 additions & 0 deletions doc/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Latest development release
| Version: 1.36
| Released: 2023-05-15
1.37 (2023-05-18)
-----------------
- Add missing dependencies.


1.36 (2023-05-15)
-----------------
This release provides new mechanisms that allow you to monitor your pruning and
Expand Down
14 changes: 7 additions & 7 deletions emborg/shlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see [http://www.gnu.org/licenses/].

__version__ = "1.5"
__released__ = "2022-11-04"
__version__ = "1.6"
__released__ = "2023-05-18"

# Imports {{{1
try:
Expand Down Expand Up @@ -454,14 +454,14 @@ def lsf(*args, **kwargs):
# Path list functions (leaves, cartesian_product, brace_expand, etc.) {{{1
def _leaves(path, hidden, report):
try:
for each in path.iterdir():
if each.is_dir():
if path.is_file():
if hidden or not path.name.startswith("."):
yield path
elif path.is_dir():
for each in path.iterdir():
if hidden or not each.name.startswith("."):
for p in _leaves(each, hidden, report):
yield p
elif each.is_file():
if hidden or not each.name.startswith("."):
yield each
except OSError as e:
if report:
report(e)
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ requires-python = ">=3.6"
dependencies = [
"appdirs",
"arrow>=0.15",
# "avendesora", # optional
"docopt",
"inform>=1.28",
"nestedtext",
"quantiphy",
"requests",
]
Expand Down

0 comments on commit eb82b14

Please sign in to comment.