node_vm2
node_vm2 copied to clipboard
Bump ordered-set from 3.1.1 to 4.1.0
Bumps ordered-set from 3.1.1 to 4.1.0.
Changelog
Sourced from ordered-set's changelog.
Changelog
Significant changes in major and minor releases of this library:
Version 4.1 (January 2022)
- Packaged using flit. Wheels now exist, and setuptools is no longer required.
- This package now has a typical package structure, instead of being a single module. The code is in
ordered_set/__init__.pyinstead ofordered_set.py.- There is an
ordered_set/py.typedso that type checkers know about the types.- Use the type aliases
SetLike[T]andOrderedSetInitializer[T]to simplify some types.- Updated the way overloaded type signatures are written to what MyPy currently expects.
- Minimum Python version is 3.7.
Version 4.0 (January 2020)
- Added type signatures inline to the code, instead of using type stubs.
- Dropped Python 2 support. The minimum supported Python version is 3.5.
Version 3.1 (November 2018)
__getitem__accepts NumPy arrays of indices, and returns a list of elements with those indices.- Updated in-place operations that took O(N^2) time, such as .difference_update(), to take O(N) time.
- Clarified whether various methods mutate or copy the OrderedSet.
- Added
OrderedSet.get_locandOrderedSet.get_indexeras aliases forOrderedSet.index, for interoperability withpandas.Index.- Added type stubs in a .pyi file.
Version 3.0 (June 2018)
- Implemented the abstract base classes
collections.MutableSetandcollections.Sequence.- Changed the behavior of some methods to follow the MutableSet API.
- Indexing an OrderedSet with
[:]returns a copy, not the same object.Version 2.0 (December 2015)
- Tuples are allowable values in the set, and are not treated as "fancy indexing".
- Added
updateandpopmethods.Version 1.4 (September 2015)
- Added
discardandclearmethods.Version 1.3 (April 2015)
- Added support for pickling.
Version 1.2 (May 2014)
- First Python 3 support.
Version 1.1 (August 2013)
... (truncated)
Commits
- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)