Skip to content

Commit 459ebc5

Browse files
authored
Merge pull request #69 from ghost-in-moss/version/0.1.10
release: prepare v0.1.0
2 parents 0172b95 + 945d258 commit 459ebc5

7 files changed

Lines changed: 16 additions & 7 deletions

File tree

RELEASES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
first release version.
66

7+
## v0.1.10
8+
9+
* fix import self from typing_extensions for python 3.10 at sphero
10+
* fix extra import test at `ghostos[realtime]`
11+
712
## v0.1.9
813

914
* fix realtime had required openai proxy existence.

ghostos/prototypes/spherogpt/bolt/bolt_shell.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from typing import Self, Optional, Callable, List, Literal, Tuple
1+
from typing import Optional, Callable, List, Literal, Tuple
2+
from typing_extensions import Self
23
from abc import ABC, abstractmethod
34
from pydantic import BaseModel, Field
45

ghostos/prototypes/spherogpt/bolt/led_matrix_impl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from typing import List, Dict, Self, Optional, AnyStr
1+
from typing import List, Dict, Optional, AnyStr
2+
from typing_extensions import Self
23

34
from .sphero_edu_api_patch import SpheroEduAPI
45

ghostos/prototypes/spherogpt/bolt/movements.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from typing import List, Union, Dict, Optional, Self
1+
from typing import List, Union, Dict, Optional
2+
from typing_extensions import Self
23
from pydantic import BaseModel, Field
34
from ghostos.entity import ModelEntityMeta, to_entity_model_meta, from_entity_model_meta
45

ghostos/prototypes/spherogpt/bolt/runtime.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from abc import ABC, abstractmethod
2-
from typing import Optional, Self
2+
from typing import Optional
3+
from typing_extensions import Self
34
from ghostos.entity import ModelEntity
45
from pydantic import BaseModel, Field
56
from .sphero_edu_api_patch import SpheroEduAPI

ghostos/prototypes/spherogpt/bolt/runtime_impl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
from typing import Optional, Callable, Type, ClassVar, Self
1+
from typing import Optional, Callable, Type, ClassVar
2+
from typing_extensions import Self
23
import time
34

45
from ghostos.contracts.logger import LoggerItf
56
from ghostos.core.messages import MessageType
67
from ghostos.core.runtime import EventBus, Event, EventTypes as GhostOSEventTypes
78
from ghostos.container import Container, BootstrapProvider, INSTANCE
8-
from ghostos.abcd import Conversation
99
from ghostos.helpers import Timeleft
1010
from threading import Thread, Event, Lock
1111
from collections import deque

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ghostos"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
description = "A framework offers an operating system simulator with a Python Code Interface for AI Agents"
55
authors = ["zhuming <thirdgerb@gmail.com>", "Nile Zhou <nilezhou123@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)