Skip to content

Commit d6446ea

Browse files
martinibachjustrdk
andauthored
Python to 3.12 (#90)
* wip python to 3.12 * poetry lock files * remove poetry lock files * gitignore --------- Co-authored-by: Osman Hernandez <[email protected]>
1 parent 77bf98f commit d6446ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+86
-27911
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ __pycache__
22
.pytest_cache
33
venv
44
.env
5-
.vscode
5+
.vscode
6+
poetry.lock

bostondynamics_spot/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ __pycache__
22
.pytest_cache
33
venv
44
.env
5-
.vscode
5+
.vscode
6+
poetry.lock

bostondynamics_spot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ It demonstrates how to control Boston Dynamics Spot robot through a basic workfl
3434
4. Install dependencies using Poetry:
3535

3636
```bash
37-
poetry env use 3.12.4
37+
poetry env use 3.12
3838
```
3939

4040
```bash

bostondynamics_spot/poetry.lock

Lines changed: 0 additions & 751 deletions
This file was deleted.

bostondynamics_spot/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project metadata
22
[tool.poetry]
3-
name = "get_started"
3+
name = "bostondynamics_spot"
44
version = "0.0.1"
55
description = "A simple example to get started with the restack-ai SDK"
66
authors = [
@@ -10,7 +10,7 @@ readme = "README.md"
1010
packages = [{include = "src"}]
1111

1212
[tool.poetry.dependencies]
13-
python = "3.12.4"
13+
python = ">=3.10,<4.0"
1414
restack-ai = "0.0.40"
1515
bosdyn-client = "4.1.0"
1616
opencv-python = "4.10.0.84"

child_workflows/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ __pycache__
22
.pytest_cache
33
venv
44
.env
5-
.vscode
5+
.vscode
6+
poetry.lock

child_workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This repository contains a simple example project to help you get started with c
3232
4. Install dependencies using Poetry:
3333

3434
```bash
35-
poetry env use 3.12.4
35+
poetry env use 3.12
3636
```
3737

3838
```bash

child_workflows/poetry.lock

Lines changed: 0 additions & 238 deletions
This file was deleted.

child_workflows/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
packages = [{include = "src"}]
1111

1212
[tool.poetry.dependencies]
13-
python = "3.12.4"
13+
python = ">=3.10,<4.0"
1414
restack-ai = "0.0.40"
1515

1616
[tool.poetry.dev-dependencies]

custom_llm_gemini/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
__pycache__
2-
.env
2+
.env
3+
poetry.lock

0 commit comments

Comments
 (0)