Skip to content

Commit c4811e7

Browse files
Merge branch 'main' into SW-1890-modify-lease-taking
2 parents 60e7d1c + 800b1f7 commit c4811e7

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
config:
2828
- { python: "3.10" }
2929
name: Run pre-commit
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
steps:
3232
- name: Checkout repository
3333
uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
config:
4747
- { python: "3.10" }
4848
name: Test spot_wrapper package
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-22.04
5050
steps:
5151
- name: Checkout repository
5252
uses: actions/checkout@v4

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spot Wrapper
22

3-
![Python](https://img.shields.io/badge/python-3.8|3.9|3.10-blue)
3+
![Python](https://img.shields.io/badge/python-3.10-blue)
44
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
55
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
66
[![CI](https://github.com/bdaiinstitute/spot_wrapper/workflows/CI/badge.svg)](https://github.com/bdaiinstitute/spot_wrapper/actions)
@@ -9,7 +9,7 @@
99

1010
This Python package is a wrapper around the [Boston Dynamics Spot SDK](https://dev.bostondynamics.com), intended as a united point of entry to the SDK for use with the [spot_ros](https://github.com/heuristicus/spot_ros) and [spot_ros2](https://github.com/bdaiinstitute/spot_ros2) packages.
1111

12-
This package currently corresponds to `spot-sdk` release 4.1.0. As support for Python 3.8 and 3.9 was dropped in this release, the minimum supported version of Python this package supports is 3.10.
12+
This package currently corresponds to `spot-sdk` release 4.1.1. The minimum supported version of Python this package supports is 3.10.
1313

1414
# Installation
1515

requirements.txt

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
aiortc==1.5.0
2-
bosdyn-api==4.1.0
3-
bosdyn-choreography-client==4.1.0
4-
bosdyn-client==4.1.0
5-
bosdyn-core==4.1.0
6-
bosdyn-mission==4.1.0
2+
bosdyn-api==4.1.1
3+
bosdyn-choreography-client==4.1.1
4+
bosdyn-client==4.1.1
5+
bosdyn-core==4.1.1
6+
bosdyn-mission==4.1.1
77
grpcio==1.59.3
88
image==1.5.33
99
inflection==0.5.1
@@ -15,3 +15,4 @@ pytest-cov==4.1.0
1515
pytest-xdist==3.5.0
1616
pyyaml>=6.0
1717
setuptools==59.6.0
18+
numpy==1.21.5

0 commit comments

Comments
 (0)