Skip to content

Commit f5cff6a

Browse files
committed
Bump version to 0.3.2; update description and fix README image URL
1 parent caa5793 commit f5cff6a

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ authors:
55
- family-names: "Gross"
66
given-names: "Michael"
77
email: "MGross21@users.noreply.github.com"
8-
version: "0.3.1"
8+
version: "0.3.2"
99
date-released: "2025-03-09"
1010
license: "MIT"
1111
url: "https://github.com/MGross21/armctl"
1212
abstract: |
13-
armctl is a Python library for controlling various robotic arms, providing utilities and templates for communication, motion, and integration with different robot brands.
13+
armctl is a unified Python interface for controlling a variety of industrial and hobbyist robots from different manufacturers.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<h1><img src="assets/logo/armctl_logo_orange.png" alt="armctl" width="300px"></h1>
2+
<h1><img src="https://raw.githubusercontent.com/MGross21/armctl/main/assets/logo/armctl_logo_orange.png" alt="armctl" width="300px"></h1>
33
</div>
44

55
<p align="center">
@@ -54,7 +54,7 @@ pip install git+https://github.com/MGross21/armctl.git
5454
from armctl import *
5555
```
5656

57-
> [!NOTE]
57+
> **Note:**
5858
> For improved runtime performance and clarity, you may import specific manufacturers and robot series directly.
5959
6060
### Simple Example with Manufacturer Defaults

armctl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"Logger",
3535
]
3636

37-
__version__ = "0.3.1"
37+
__version__ = "0.3.2"
3838

3939
class Logger:
4040
"""Global logger utility for armctl."""

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "armctl"
7-
version = "0.3.1"
8-
description = "Agnostic Robotic Manipulator Controller"
7+
version = "0.3.2"
8+
description = "Agnostic Robotic Manipulator Controller (armctl)"
99
authors = [{ name = "Michael Gross", email = "MGross21@users.noreply.github.com" }]
1010
readme = {file = "README.md", content-type = "text/markdown"}
1111
license = { file = "LICENSE" }
@@ -23,10 +23,10 @@ Tracker = "https://github.com/MGross21/armctl/issues"
2323
[tool.poetry.dependencies]
2424
python = "^3.9"
2525

26-
[project.optional-dependencies]
27-
ur = [
28-
"urrtde @ git+https://github.com/UniversalRobots/RTDE_Python_Client_Library.git@main",
29-
]
26+
# [project.optional-dependencies]
27+
# ur = [
28+
# "urrtde @ git+https://github.com/UniversalRobots/RTDE_Python_Client_Library.git@main",
29+
# ]
3030

3131
[tool.poetry.urls]
3232
Homepage = "https://github.com/MGross21/armctl"
@@ -62,6 +62,6 @@ force_grid_wrap = 0
6262
use_parentheses = true
6363

6464
[tool.mypy]
65-
python_version = 3.9
65+
python_version = "3.9"
6666
strict = true
6767
ignore_missing_imports = true

0 commit comments

Comments
 (0)