Skip to content

Commit

Permalink
Python to 3.12 (#90)
Browse files Browse the repository at this point in the history
* wip python to 3.12

* poetry lock files

* remove poetry lock files

* gitignore

---------

Co-authored-by: Osman Hernandez <osman.sist@gmail.com>
  • Loading branch information
martinibach and justrdk authored Dec 4, 2024
1 parent 77bf98f commit d6446ea
Show file tree
Hide file tree
Showing 78 changed files with 86 additions and 27,911 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ __pycache__
.pytest_cache
venv
.env
.vscode
.vscode
poetry.lock
3 changes: 2 additions & 1 deletion bostondynamics_spot/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ __pycache__
.pytest_cache
venv
.env
.vscode
.vscode
poetry.lock
2 changes: 1 addition & 1 deletion bostondynamics_spot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ It demonstrates how to control Boston Dynamics Spot robot through a basic workfl
4. Install dependencies using Poetry:

```bash
poetry env use 3.12.4
poetry env use 3.12
```

```bash
Expand Down
751 changes: 0 additions & 751 deletions bostondynamics_spot/poetry.lock

This file was deleted.

4 changes: 2 additions & 2 deletions bostondynamics_spot/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project metadata
[tool.poetry]
name = "get_started"
name = "bostondynamics_spot"
version = "0.0.1"
description = "A simple example to get started with the restack-ai SDK"
authors = [
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "3.12.4"
python = ">=3.10,<4.0"
restack-ai = "0.0.40"
bosdyn-client = "4.1.0"
opencv-python = "4.10.0.84"
Expand Down
3 changes: 2 additions & 1 deletion child_workflows/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ __pycache__
.pytest_cache
venv
.env
.vscode
.vscode
poetry.lock
2 changes: 1 addition & 1 deletion child_workflows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This repository contains a simple example project to help you get started with c
4. Install dependencies using Poetry:

```bash
poetry env use 3.12.4
poetry env use 3.12
```

```bash
Expand Down
238 changes: 0 additions & 238 deletions child_workflows/poetry.lock

This file was deleted.

2 changes: 1 addition & 1 deletion child_workflows/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
packages = [{include = "src"}]

[tool.poetry.dependencies]
python = "3.12.4"
python = ">=3.10,<4.0"
restack-ai = "0.0.40"

[tool.poetry.dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion custom_llm_gemini/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__pycache__
.env
.env
poetry.lock
2 changes: 1 addition & 1 deletion custom_llm_gemini/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This Flask application provides a chat completion API that proxy the stream to G
Useful for VAPI integration

```bash
poetry env use 3.12.4
poetry env use 3.12
```

```bash
Expand Down
Loading

0 comments on commit d6446ea

Please sign in to comment.