Skip to content

Commit aa0a83a

Browse files
author
Alessandro
committed
Release v0.2.2
1 parent 0c24a95 commit aa0a83a

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

BlueStacksAgent/actuators/adb_actuator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import numpy as np
44
from adbutils import AdbDevice
55

6-
from BlueStacksAgent import BaseActuator
6+
from .base import BaseActuator
77

88

99
class AdbActuator(BaseActuator, abc.ABC):

BlueStacksAgent/agents/scrcpy_agent.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import threading
22
import time
33
from .base import BaseAgent
4+
# noinspection PyPackageRequirements
45
from scrcpy import Client
56

67
class ScrcpyAgent(BaseAgent):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "BlueStacksAgent"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "A Python library for real-time interaction with BlueStacks using scrcpy, minicap, and MediaProjection."
55
readme = "README.md"
66
requires-python = ">=3.7, <3.11"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="BlueStacksAgent",
5-
version="0.2.1",
5+
version="0.2.2",
66
description="A Python library for real-time interaction with BlueStacks using scrcpy, minicap, and MediaProjection.",
77
long_description=open("README.md", encoding="utf8").read(),
88
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)