Skip to content

Commit a2ba021

Browse files
committed
ci(version): bump to v0.3.3
1 parent 035a0a8 commit a2ba021

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "kazu"
3-
version = "0.3.2.1"
3+
version = "0.3.3"
44
description = "Default template for PDM package"
55
authors = [
66
{ name = "Whth", email = "88489697+Whth@users.noreply.github.com" },

src/kazu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__all__ = []
22
__command__ = "kazu"
3-
__version__ = "0.3.2.1"
3+
__version__ = "0.3.3"

src/kazu/config.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ def __init__(self, /, **data: Any):
4949

5050

5151
class EdgeConfig(BaseModel):
52-
lower_threshold: Tuple[float, float, float, float] = (1800, 1750, 1750, 1800)
53-
upper_threshold: Tuple[float, float, float, float] = (2100, 2270, 2270, 2100)
52+
lower_threshold: Tuple[float, float, float, float] = (1740, 1650, 1650, 1740)
53+
upper_threshold: Tuple[float, float, float, float] = (2100, 2470, 2470, 2100)
5454

5555
fallback_speed: int = 2600
5656
fallback_duration: float = 0.2
@@ -108,7 +108,7 @@ class SurroundingConfig(BaseModel):
108108

109109
class GradientConfig(BaseModel):
110110

111-
max_speed: int = 3000
111+
max_speed: int = 2800
112112
min_speed: int = 500
113113
lower_bound: int = 2900
114114
upper_bound: int = 3700
@@ -158,7 +158,7 @@ class SearchConfig(BaseModel):
158158
gradient_move: GradientConfig = GradientConfig()
159159

160160
use_scan_move: bool = True
161-
scan_move_weight: float = 0.96
161+
scan_move_weight: float = 1.96
162162
scan_move: ScanConfig = ScanConfig()
163163

164164
use_rand_turn: bool = True
@@ -252,7 +252,7 @@ class BackStageConfig(BaseModel):
252252
use_is_on_stage_check: bool = True
253253
use_side_away_check: bool = True
254254

255-
side_away_degree_tolerance: float = 18.0
255+
side_away_degree_tolerance: float = 10.0
256256
exit_side_away_speed: int = 1300
257257
exit_side_away_duration: float = 0.6
258258

0 commit comments

Comments
 (0)