Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.8.1 release #44

Merged
merged 6 commits into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.12"]
python-version: ["3.9", "3.13"]
os: [ubuntu-latest]

steps:
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [0.8.1] - 2025-03-05

### Added
- Ported deep_update from yacman

## [0.8.0] - 2024-04-02
### Changed
- Expanded `mkabs` function to handle more cases
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli_tools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for rendering CLI options and arguments """
"""Tests for rendering CLI options and arguments"""

from collections import OrderedDict
import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_collection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for collection utilities """
"""Tests for collection utilities"""

from collections import Counter, OrderedDict
import itertools
Expand Down
2 changes: 1 addition & 1 deletion tests/test_environment.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for environment-related functionality """
"""Tests for environment-related functionality"""

import os
import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for checksum """
"""Tests for checksum"""

import hashlib
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/test_packaging.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Validate what's available directly on the top-level import. """
"""Validate what's available directly on the top-level import."""

import pytest
from inspect import isclass, isfunction
Expand Down
2 changes: 1 addition & 1 deletion tests/test_paths.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for filesystem utilities """
"""Tests for filesystem utilities"""

import os
import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/test_query_yes_no.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for binary user terminal interaction """
"""Tests for binary user terminal interaction"""

import itertools
import unittest.mock as mock
Expand Down
2 changes: 1 addition & 1 deletion tests/test_system.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for system tools """
"""Tests for system tools"""

import os
import subprocess
Expand Down
2 changes: 1 addition & 1 deletion tests/test_web.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tests for web """
"""Tests for web"""

import pytest
from ubiquerg.web import is_url
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Package exports """
"""Package exports"""

from .cli_tools import *
from .collection import *
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.0"
__version__ = "0.8.1"
2 changes: 1 addition & 1 deletion ubiquerg/cli_tools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Functions for working with command-line interaction """
"""Functions for working with command-line interaction"""

from .collection import is_collection_like, merge_dicts
from argparse import (
Expand Down
24 changes: 21 additions & 3 deletions ubiquerg/collection.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Tools for working with collections """
"""Tools for working with collections"""

import itertools
import sys
Expand All @@ -7,13 +7,19 @@
if sys.version_info < (3, 3):
from collections import Iterable
else:
from collections.abc import Iterable
from collections.abc import Iterable, Mapping

__author__ = "Vince Reuter"
__email__ = "[email protected]"


__all__ = ["is_collection_like", "powerset", "asciify_dict", "merge_dicts"]
__all__ = [
"is_collection_like",
"powerset",
"asciify_dict",
"merge_dicts",
"deep_update",
]


def merge_dicts(x, y):
Expand All @@ -29,6 +35,18 @@ def merge_dicts(x, y):
return z


def deep_update(old, new):
"""
Recursively update nested dict, modifying source
"""
for key, value in new.items():
if isinstance(value, Mapping) and value:
old[key] = deep_update(old.get(key, {}), value)
else:
old[key] = new[key]
return old


def is_collection_like(c):
"""

Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/environment.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Environment-related utilities """
"""Environment-related utilities"""

import os

Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Functions facilitating file operations """
"""Functions facilitating file operations"""

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/paths.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Filesystem utility functions """
"""Filesystem utility functions"""

import os
import re
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/system.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" System utility functions """
"""System utility functions"""

import os
import subprocess
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/web.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Web-related utilities """
"""Web-related utilities"""

import re

Expand Down