Skip to content

Commit 0c44dcb

Browse files
committed
Updated Classifiers And .yaml Files(#505)
1 parent b179a8f commit 0c44dcb

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

ci_group/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ authors = [
1818
]
1919
repository = "https://github.com/ci-group/revolve2"
2020
classifiers = [
21-
"Development Status :: 4 - Beta",
21+
"Development Status :: 5 - Production/Stable",
2222
"Typing :: Typed",
2323
"Topic :: Scientific/Engineering",
2424
"Programming Language :: Python :: 3",

experimentation/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
repository = "https://github.com/ci-group/revolve2"
1515
classifiers = [
16-
"Development Status :: 4 - Beta",
16+
"Development Status :: 5 - Production/Stable",
1717
"Typing :: Typed",
1818
"Topic :: Scientific/Engineering",
1919
"Programming Language :: Python :: 3",

modular_robot/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
repository = "https://github.com/ci-group/revolve2"
1515
classifiers = [
16-
"Development Status :: 4 - Beta",
16+
"Development Status :: 5 - Production/Stable",
1717
"Typing :: Typed",
1818
"Topic :: Scientific/Engineering",
1919
"Programming Language :: Python :: 3",

modular_robot_physical/pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
repository = "https://github.com/ci-group/revolve2"
1515
classifiers = [
16-
"Development Status :: 4 - Beta",
16+
"Development Status :: 5 - Production/Stable",
1717
"Typing :: Typed",
1818
"Topic :: Scientific/Engineering",
1919
"Programming Language :: Python :: 3",
@@ -28,23 +28,23 @@ packages = [{ include = "revolve2" }]
2828
[tool.poetry.dependencies]
2929
python = "^3.10,<3.12"
3030
revolve2-modular-robot = "1.1.0"
31-
revolve2-robohat = { version = "0.5.0", optional = true }
3231
pyrr = "^0.10.3"
3332
typed-argparse = "^0.3.1"
3433
pycapnp = { version = "^2.0.0b2" }
3534
pigpio = { version = "^1.78", optional = true }
35+
revolve2-robohat = { version = "0.5.0", optional = true }
3636
# cpnp-stub-generator is disabled because it depends on pycapnp <2.0.0.
3737
# It is rarely used and by developers only, so we remove it for now and developers can install it manually.
3838
# If you manually install it make sure you also install the correct pycpanp version afterwards as it will be overridden.
3939
# capnp-stub-generator = { git = "https://gitlab.com/mic_public/tools/python-helpers/capnp-stub-generator.git", branch = "main", optional = true }
4040

4141
[tool.poetry.extras]
4242
botv1 = ["pigpio"]
43-
botv2 = ["robohatlib"]
43+
botv2 = ["revolve2-robohat"]
4444
remote = []
4545
dev = [
4646
"pigpio",
47-
"robohatlib",
47+
"revolve2-robohat",
4848
#"capnp-stub-generator",
4949
]
5050

modular_robot_simulation/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
repository = "https://github.com/ci-group/revolve2"
1515
classifiers = [
16-
"Development Status :: 4 - Beta",
16+
"Development Status :: 5 - Production/Stable",
1717
"Typing :: Typed",
1818
"Topic :: Scientific/Engineering",
1919
"Programming Language :: Python :: 3",

simulation/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
repository = "https://github.com/ci-group/revolve2"
1515
classifiers = [
16-
"Development Status :: 4 - Beta",
16+
"Development Status :: 5 - Production/Stable",
1717
"Typing :: Typed",
1818
"Topic :: Scientific/Engineering",
1919
"Programming Language :: Python :: 3",

uninstall.sh

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# !/bin/bash
12
# pip uninstall for every package which name contains 'revolve2'
23
packages=$(pip list | grep revolve2 | awk '{print $1}')
34
if [ -n "$packages" ]; then

0 commit comments

Comments
 (0)