Skip to content

Commit e99f82a

Browse files
committed
chore(pyproject): fixed licenses and version update
1 parent 36ed919 commit e99f82a

6 files changed

Lines changed: 12 additions & 36 deletions

File tree

extensions/rcs_fr3/pyproject.toml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"
44

55
[project]
66
name = "rcs_fr3"
7-
version = "0.4.0"
7+
version = "0.5.0"
88
description="RCS libfranka integration"
99
dependencies = [
1010
# NOTE: when changing the pin version, also change it in requirements_dev.txt
@@ -19,12 +19,7 @@ authors = [
1919
{ name = "Pierre Krack", email = "pierre.krack@utn.de" },
2020
]
2121
requires-python = ">=3.10"
22-
license = {file = "../../LICENSE"}
23-
classifiers = [
24-
"Development Status :: 3 - Alpha",
25-
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)",
26-
"Programming Language :: Python :: 3",
27-
]
22+
license = "AGPL-3.0-or-later"
2823

2924

3025
[tool.scikit-build]

extensions/rcs_realsense/pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,5 @@ authors = [
2121
{ name = "Pierre Krack", email = "pierre.krack@utn.de" },
2222
]
2323
requires-python = ">=3.10"
24-
classifiers = [
25-
"Development Status :: 3 - Alpha",
26-
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)",
27-
"Programming Language :: Python :: 3",
28-
]
24+
license = "AGPL-3.0-or-later"
2925

extensions/rcs_robotics_library/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ authors = [
1515
{ name = "Pierre Krack", email = "pierre.krack@utn.de" },
1616
]
1717
requires-python = ">=3.10"
18-
license = {file = "../../LICENSE"}
18+
license = "AGPL-3.0-or-later"
1919

2020

2121
[tool.scikit-build]

extensions/rcs_so101/pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,4 @@ authors = [
1919
{ name = "Pierre Krack", email = "pierre.krack@utn.de" },
2020
]
2121
requires-python = ">=3.10"
22-
classifiers = [
23-
"Development Status :: 3 - Alpha",
24-
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)",
25-
"Programming Language :: Python :: 3",
26-
]
27-
22+
license = "AGPL-3.0-or-later"

extensions/rcs_xarm7/pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,4 @@ authors = [
2020
{ name = "Ken Nakahara", email = "knakahara@lasr.org" },
2121
]
2222
requires-python = ">=3.10"
23-
license = "AGPL-3.0-or-later"
24-
classifiers = [
25-
"Development Status :: 3 - Alpha",
26-
"Programming Language :: Python :: 3",
27-
]
28-
23+
license = "AGPL-3.0-or-later"

pyproject.toml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,7 @@ authors = [
3737
{ name = "Pierre Krack", email = "pierre.krack@utn.de" },
3838
]
3939
requires-python = ">=3.10"
40-
license = {file = "LICENSE"}
41-
classifiers = [
42-
"Development Status :: 3 - Alpha",
43-
"License :: OSI Approved :: GNU Affero General Public License v3 (AGPLv3)",
44-
"Programming Language :: Python :: 3",
45-
]
40+
license = "AGPL-3.0-or-later"
4641

4742
# until https://github.com/pypa/pip/issues/11440 is resolved
4843
# we use requirements_dev.txt for linter and formatter dependencies
@@ -152,13 +147,13 @@ version_files = [
152147

153148
"extensions/rcs_fr3/CMakeLists.txt:VERSION",
154149
"extensions/rcs_fr3/src/rcs_fr3/_core/__init__.pyi:__version__",
155-
"extensions/rcs_fr3/pyproject.toml:project.version",
150+
"extensions/rcs_fr3/pyproject.toml:version",
156151

157152
"extensions/rcs_robotics_library/CMakeLists.txt:VERSION",
158153
"extensions/rcs_robotics_library/src/rcs_robotics_library/_core/__init__.pyi:__version__",
159-
"extensions/rcs_robotics_library/pyproject.toml:project.version",
154+
"extensions/rcs_robotics_library/pyproject.toml:version",
160155

161-
"extensions/rcs_realsense/pyproject.toml:project.version",
162-
"extensions/rcs_so101/pyproject.toml:project.version",
163-
"extensions/rcs_xarm7/pyproject.toml:project.version",
156+
"extensions/rcs_realsense/pyproject.toml:version",
157+
"extensions/rcs_so101/pyproject.toml:version",
158+
"extensions/rcs_xarm7/pyproject.toml:version",
164159
]

0 commit comments

Comments
 (0)