Skip to content

Commit

Permalink
build: update version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TE-KazuhiroYabe committed May 31, 2024
1 parent 842104e commit 71a2785
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 27 deletions.
44 changes: 22 additions & 22 deletions docs/install_toio.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def get_latest_toio_py(min="1.1.0a1", max="1.2.0"):
max_ver = parse(max)
latest = Version("0.0.0")
found_specified_version = False
# query = "https://pypi.org/pypi/toio-py/json"
query = "https://test.pypi.org/pypi/toio-py/json"
query = "https://pypi.org/pypi/toio-py/json"
# query = "https://test.pypi.org/pypi/toio-py/json"
result = requests.get(query).json()
# search latest version
releases = result["releases"]
Expand Down Expand Up @@ -73,29 +73,29 @@ def get_latest_toio_py(min="1.1.0a1", max="1.2.0"):
)

EXAMPLES = (
"https://toio.github.io/internal-toio.py/examples/async_gather.py",
"https://toio.github.io/internal-toio.py/examples/async_gather_multi.py",
"https://toio.github.io/internal-toio.py/examples/async_task_group.py",
"https://toio.github.io/internal-toio.py/examples/detect_mat.py",
"https://toio.github.io/internal-toio.py/examples/motor_control.py",
"https://toio.github.io/internal-toio.py/examples/multi_cubes_with_attribute.py",
"https://toio.github.io/internal-toio.py/examples/multi_cubes_with_named.py",
"https://toio.github.io/internal-toio.py/examples/read_position.py",
"https://toio.github.io/internal-toio.py/examples/scan_and_connect.py",
"https://toio.github.io/internal-toio.py/examples/tutorial_pursuer.py",
"https://toio.github.io/toio.py/async_gather.py",
"https://toio.github.io/toio.py/async_gather_multi.py",
"https://toio.github.io/toio.py/async_task_group.py",
"https://toio.github.io/toio.py/detect_mat.py",
"https://toio.github.io/toio.py/motor_control.py",
"https://toio.github.io/toio.py/multi_cubes_with_attribute.py",
"https://toio.github.io/toio.py/multi_cubes_with_named.py",
"https://toio.github.io/toio.py/read_position.py",
"https://toio.github.io/toio.py/scan_and_connect.py",
"https://toio.github.io/toio.py/tutorial_pursuer.py",
)

EXAMPLES_SIMPLE = (
"https://toio.github.io/internal-toio.py/examples/async_gather.py",
"https://toio.github.io/internal-toio.py/examples/async_gather_multi.py",
"https://toio.github.io/internal-toio.py/examples/async_task_group.py",
"https://toio.github.io/internal-toio.py/examples/detect_mat.py",
"https://toio.github.io/internal-toio.py/examples/motor_control.py",
"https://toio.github.io/internal-toio.py/examples/multi_cubes_with_attribute.py",
"https://toio.github.io/internal-toio.py/examples/multi_cubes_with_named.py",
"https://toio.github.io/internal-toio.py/examples/read_position.py",
"https://toio.github.io/internal-toio.py/examples/scan_and_connect.py",
"https://toio.github.io/internal-toio.py/examples/tutorial_pursuer.py",
"https://toio.github.io/toio.py/async_gather.py",
"https://toio.github.io/toio.py/async_gather_multi.py",
"https://toio.github.io/toio.py/async_task_group.py",
"https://toio.github.io/toio.py/detect_mat.py",
"https://toio.github.io/toio.py/motor_control.py",
"https://toio.github.io/toio.py/multi_cubes_with_attribute.py",
"https://toio.github.io/toio.py/multi_cubes_with_named.py",
"https://toio.github.io/toio.py/read_position.py",
"https://toio.github.io/toio.py/scan_and_connect.py",
"https://toio.github.io/toio.py/tutorial_pursuer.py",
)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "toio.py"
version = "1.1.0rc1"
version = "1.1.0"
description = "Control toio™Core Cube"
authors = ["Sony Interactive Entertainment"]
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions pythonista3/install_toio.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ def get_latest_toio_py(min="1.1.0a1", max="1.2.0"):
max_ver = parse(max)
latest = Version("0.0.0")
found_specified_version = False
# query = "https://pypi.org/pypi/toio-py/json"
query = "https://test.pypi.org/pypi/toio-py/json"
query = "https://pypi.org/pypi/toio-py/json"
# query = "https://test.pypi.org/pypi/toio-py/json"
result = requests.get(query).json()
# search latest version
releases = result["releases"]
Expand Down
3 changes: 1 addition & 2 deletions pythonista3/make_install_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
REPO_TOP=$(git rev-parse --show-toplevel)

# DOWNLOAD_URL="https://toio.github.io/toio.py"
DOWNLOAD_URL="https://toio.github.io/internal-toio.py/examples"
DOWNLOAD_URL="https://toio.github.io/toio.py"
EXAMPLES_DIR="${REPO_TOP}/docs/examples"
EXAMPLES_SIMPLE_DIR="${REPO_TOP}/docs/examples-simple"

Expand Down

0 comments on commit 71a2785

Please sign in to comment.