Skip to content

Release v1.11.0 #91

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

Merged
merged 8 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

- name: "Install dependencies"
run: |
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"

- name: "Install dependencies"
run: |
Expand All @@ -59,12 +59,12 @@ jobs:
tox -e lint

loader:
name: "Loader: ${{ matrix.loader }}"
name: "Loader: ${{ matrix.loader }} with Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8"]
python-version: ["3.9"]
loader: ["idyntree", "mujoco", "pinocchio", "pybullet", "robomeshcat", "yourdfpy"]

steps:
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [1.11.0] - 2024-06-27

### Added

- Description: KUKA iiwa 7 (URDF)
Expand All @@ -15,6 +17,8 @@ All notable changes to this project will be documented in this file.

### Changed

- Bump minimum Python version to 3.9
- CICD: Pin NumPy version to <2 for PyBullet and yourdfpy
- CICD: Update ruff to 0.2.2
- Rename ``iiwa_description`` to ``iiwa14_description``
- Rename ``iiwa_mj_description`` to ``iiwa14_mj_description``
Expand Down Expand Up @@ -359,7 +363,8 @@ This initial release includes 33 robot descriptions:
- Contributing instructions
- This changelog

[unreleased]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.10.0...HEAD
[unreleased]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.11.0...HEAD
[1.11.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.10.0...v1.11.0
[1.10.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.9.0...v1.10.0
[1.9.0]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.8.1...v1.9.0
[1.8.1]: https://github.com/robot-descriptions/robot_descriptions.py/compare/v1.8.0...v1.8.1
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cff-version: 1.2.0
message: "If you find this code helpful, please cite it as below."
title: "robot_descriptions.py: Robot descriptions in Python"
version: 1.10.0
date-released: 2024-04-24
version: 1.11.0
date-released: 2024-06-27
url: "https://github.com/robot-descriptions/robot_descriptions.py"
license: "Apache-2.0"
authors:
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ Importing a description for the first time automatically downloads and caches fi

## Installation

### PyPI
### From conda-forge

[![PyPI version](https://img.shields.io/pypi/v/robot_descriptions)](https://pypi.org/project/robot_descriptions/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/robot_descriptions.svg)](https://anaconda.org/conda-forge/robot_descriptions)

```console
pip install robot_descriptions
conda install -c conda-forge robot_descriptions
```

### Conda
### From PyPI

[![Conda Version](https://img.shields.io/conda/vn/conda-forge/robot_descriptions.svg)](https://anaconda.org/conda-forge/robot_descriptions)
[![PyPI version](https://img.shields.io/pypi/v/robot_descriptions)](https://pypi.org/project/robot_descriptions/)

```console
conda install -c conda-forge robot_descriptions
pip install robot_descriptions
```

## Usage
Expand Down Expand Up @@ -283,7 +283,7 @@ If you use this project in your works, please cite as follows:
license = {Apache-2.0},
title = {{robot_descriptions.py: Robot descriptions in Python}},
url = {https://github.com/robot-descriptions/robot_descriptions.py},
version = {1.10.0},
version = {1.11.0},
year = {2024}
}
```
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion robot_descriptions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

"""Import open source robot description as Python modules."""

__version__ = "1.10.0"
__version__ = "1.11.0"
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ envlist = coverage,lint,loader-{mujoco,pinocchio,pybullet,robomeshcat,yourdfpy,i

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv:coverage]
deps =
coverage >=5.5
idyntree >= 8.0.0
mujoco >=2.3.5
numpy >=1.23.4
numpy >=1.23.4,<2
pin >=2.6.14
pybullet >=3.2.5
robomeshcat >= 1.0.4
Expand All @@ -31,6 +31,7 @@ deps =
mccabe
mujoco >=2.3.5
mypy
numpy >=1.23.4,<2
pin >=2.6.14
pybullet >=3.2.5
pylint
Expand Down Expand Up @@ -68,7 +69,7 @@ commands =
[testenv:loader-pybullet]
changedir = {toxinidir}/tests/loaders
deps =
numpy >=1.23.4
numpy >=1.23.4,<2
pybullet >=3.2.5
commands =
python -m unittest test_pybullet.py
Expand All @@ -85,7 +86,7 @@ commands =
changedir = {toxinidir}/tests/loaders
deps =
lxml <=4.9.4
numpy >=1.23.4
numpy >=1.23.4,<2
trimesh ~=3.16.0
yourdfpy >=0.0.56
commands =
Expand Down
Loading