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

Remove unused mapping functions #1337

Merged
merged 4 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Removed `compas.scene.SceneObjectNode`, functionalities merged into `compas.scene.SceneObject`.
* Removed `compas.scene.SceneTree`, functionalities merged into `compas.scene.Scene`.
* Removed `compas.utilities.maps` since functionality is replaced by `compas.tolerance`.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we have a more detailed entry here? In particular, I would highlight that the geometric_key function is gone and indicate what's the replacement


## [2.1.0] 2024-03-01

Expand Down
26 changes: 0 additions & 26 deletions src/compas/utilities/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,6 @@
print_profile,
)

from ..itertools import (
flatten,
reshape,
grouper,
iterable_like,
linspace,
meshgrid,
normalize_values,
pairwise,
remap_values,
window,
)
from .maps import geometric_key, geometric_key_xy, reverse_geometric_key
from .remote import download_file_from_remote
from .ssh import SSH

Expand All @@ -33,19 +20,6 @@
"abstractclassmethod",
"memoize",
"print_profile",
"normalize_values",
"remap_values",
"meshgrid",
"linspace",
"reshape",
"flatten",
"pairwise",
"window",
"iterable_like",
"grouper",
"geometric_key",
"reverse_geometric_key",
"geometric_key_xy",
"download_file_from_remote",
"SSH",
]
127 changes: 0 additions & 127 deletions src/compas/utilities/maps.py

This file was deleted.

Loading