-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,17 @@ | |
<package format="3"> | ||
<name>py_trees</name> | ||
<!-- When updating, also update setup.py, version.py, pyproject.toml, package.xml --> | ||
<version>2.2.3</version> | ||
<version>2.3.0</version> | ||
<description> | ||
Pythonic implementation of behaviour trees. | ||
</description> | ||
<author>Daniel Stonier</author> | ||
|
||
<author email="[email protected]">Daniel Stonier</author> | ||
<author>Michal Staniaszek</author> | ||
<author>Naveed Usmani</author> | ||
|
||
<maintainer email="[email protected]">Daniel Stonier</maintainer> | ||
<maintainer email="[email protected]">Sebastian Castro</maintainer> | ||
|
||
<license>BSD</license> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,12 @@ | |
# Keep them in sync. | ||
d = setup( | ||
name="py_trees", | ||
version="2.2.3", | ||
version="2.3.0", | ||
packages=find_packages(exclude=["tests*", "docs*"]), | ||
package_data={"py_trees": ["py.typed"]}, | ||
install_requires=install_requires, | ||
author="Daniel Stonier, Naveed Usmani, Michal Staniaszek", | ||
maintainer="Daniel Stonier <[email protected]>", | ||
maintainer="Daniel Stonier <[email protected]>, Sebastian Castro <[email protected]>", | ||
url="https://github.com/splintered-reality/py_trees", | ||
keywords="behaviour-trees", | ||
zip_safe=True, | ||
|