Skip to content

Commit 61985af

Browse files
committed
update skale.py, fix path to settings
1 parent 4c08b43 commit 61985af

3 files changed

Lines changed: 9 additions & 10 deletions

File tree

configs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
DEFAULT_POOL = 'transactions'
2929
REDIS_URI = os.getenv('REDIS_URI', 'redis://@127.0.0.1:6379')
3030

31-
SETTINGS_FOLDER_PATH: Path = SKALE_VOLUME_PATH / 'settings'
31+
SETTINGS_FOLDER_PATH: Path = NODE_DATA_PATH / 'settings'
3232
NODE_SETTINGS_PATH: Path = SETTINGS_FOLDER_PATH / 'node.toml'
3333
SkaleSettings.model_config['toml_file'] = NODE_SETTINGS_PATH

configs/web3.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

pyproject.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ name = "bounty-agent"
33
version = "3.1.0"
44
requires-python = ">=3.13"
55
dependencies = [
6-
"apscheduler==3.11.0",
6+
"apscheduler==3.11.2",
77
"peewee==3.18.2",
88
"schedule==1.2.2",
9-
"skale.py==7.12dev2",
10-
"tenacity==9.1.2",
9+
"skale.py==7.13dev1",
10+
"tenacity==9.1.4",
1111
]
1212
[project.optional-dependencies]
13-
dev = ["ruff==0.14.1", "mypy==1.18.2"]
13+
dev = ["ruff==0.15.1", "mypy==1.19.1"]
1414
test = [
15-
"pytest==8.4.2",
15+
"pytest==9.0.2",
1616
"pytest-cov==7.0.0",
1717
"freezegun==1.5.5",
1818
"codecov==2.1.13",
@@ -25,6 +25,9 @@ log_cli_format = "[%(asctime)s] [%(levelname)8s] [%(threadName)s] %(message)s (%
2525
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
2626
filterwarnings = ["ignore::DeprecationWarning"]
2727

28+
[tool.uv]
29+
prerelease = "allow"
30+
2831
[tool.ruff]
2932
line-length = 100
3033

0 commit comments

Comments
 (0)