Skip to content

Commit

Permalink
new version of maplesim (#50)
Browse files Browse the repository at this point in the history
* new version

* changed allowed logic to allow less
  • Loading branch information
jasondaming authored Dec 10, 2024
1 parent fecf40e commit cba6170
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
8 changes: 8 additions & 0 deletions 2025.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,14 @@
"description": "FRC Java Robot Simulation using a physics engine",
"website": "https://github.com/Shenzhen-Robotics-Alliance/maple-sim"
},
{
"path": "2025/maple-sim-0.2.4.json",
"name": "maplesim",
"version": "0.2.4",
"uuid": "c39481e8-4a63-4a4c-9df6-48d91e4da37b",
"description": "FRC Java Robot Simulation using a physics engine",
"website": "https://github.com/Shenzhen-Robotics-Alliance/maple-sim"
},
{
"path": "2025/yagsl.json",
"name": "Yet Another Generic Swerve Library (YAGSL)",
Expand Down
30 changes: 30 additions & 0 deletions 2025/maple-sim-0.2.4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"fileName": "maple-sim.json",
"name": "maplesim",
"version": "0.2.4",
"frcYear": "2025",
"uuid": "c39481e8-4a63-4a4c-9df6-48d91e4da37b",
"mavenUrls": [
"https://shenzhen-robotics-alliance.github.io/maple-sim/vendordep/repos/releases",
"https://repo1.maven.org/maven2"
],
"jsonUrl": "https://shenzhen-robotics-alliance.github.io/maple-sim/vendordep/maple-sim.json",
"javaDependencies": [
{
"groupId": "org.ironmaple",
"artifactId": "maplesim-java",
"version": "0.2.4"
},
{
"groupId": "org.dyn4j",
"artifactId": "dyn4j",
"version": "5.0.2"
}
],
"jniDependencies": [

],
"cppDependencies": [

]
}
4 changes: 2 additions & 2 deletions test_utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ class VendordepCheck(unittest.TestCase):
print(f"Warnings: {{got_warn}}")
if errors_allowed is not None:
self.assertEqual(errors_allowed, got_error)
self.assertLessEqual(got_error, errors_allowed)
if warnings_allowed is not None:
self.assertEqual(warnings_allowed, got_warn)
self.assertLessEqual(got_warn, warnings_allowed)
if __name__ == "__main__":
Expand Down

0 comments on commit cba6170

Please sign in to comment.