-
Notifications
You must be signed in to change notification settings - Fork 91
Bump 1.0.2 #90
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
Bump 1.0.2 #90
Changes from all commits
fd9d9aa
e670d9b
3353ac3
f0ae71b
5ca28ce
a8d955a
e003f23
9cde9e2
3ffe7fe
c76a592
5317120
6111f61
1b7222c
c829276
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {"epsilon": 0.05000073888272134, "step_counter": 84401, "trained_episodes": 800} |
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -8,20 +8,28 @@ | |||||||||||||||||
| ('Gilbert', 'kkjong@robotis.com'), | ||||||||||||||||||
| ('Ryan Shim', 'N/A'), | ||||||||||||||||||
| ('ChanHyeong Lee', 'dddoggi1207@gmail.com'), | ||||||||||||||||||
| ('Hyungyu Kim', 'kimhg@robotis.com'), | ||||||||||||||||||
| ] | ||||||||||||||||||
| authors = ', '.join(author for author, _ in authors_info) | ||||||||||||||||||
| author_emails = ', '.join(email for _, email in authors_info) | ||||||||||||||||||
|
|
||||||||||||||||||
| setup( | ||||||||||||||||||
| name=package_name, | ||||||||||||||||||
| version='1.0.1', | ||||||||||||||||||
| version='1.0.2', | ||||||||||||||||||
| packages=find_packages(), | ||||||||||||||||||
| data_files=[ | ||||||||||||||||||
| ('share/ament_index/resource_index/packages', ['resource/' + package_name]), | ||||||||||||||||||
| ('share/' + package_name, ['package.xml']), | ||||||||||||||||||
| ('share/' + package_name + '/launch', glob.glob('launch/*.py')), | ||||||||||||||||||
| ], | ||||||||||||||||||
| install_requires=['setuptools', 'launch'], | ||||||||||||||||||
| install_requires=[ | ||||||||||||||||||
| 'setuptools', | ||||||||||||||||||
| 'launch', | ||||||||||||||||||
| 'tensorflow==2.19.0', | ||||||||||||||||||
| 'numpy==1.26.4', | ||||||||||||||||||
| 'scipy==1.10.1', | ||||||||||||||||||
| 'keras==3.9.2', | ||||||||||||||||||
|
Comment on lines
+28
to
+31
|
||||||||||||||||||
| 'tensorflow==2.19.0', | |
| 'numpy==1.26.4', | |
| 'scipy==1.10.1', | |
| 'keras==3.9.2', | |
| 'tensorflow>=2.19.0,<3.0.0', | |
| 'numpy>=1.26.4,<2.0.0', | |
| 'scipy>=1.10.1,<2.0.0', | |
| 'keras>=3.9.2,<4.0.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dependencies 'python-tensorflow-pip' and 'python3-numpy' have been removed from exec_depend, but these are now specified in setup.py's install_requires. While this may work, it's important to ensure that the ROS dependency resolution system can properly handle Python package dependencies specified only in setup.py. Consider whether these should remain as exec_depend entries for better ROS ecosystem integration.