From c1d0b5313704a046bbbf60012d427130ca562c16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 03:43:14 +0000 Subject: [PATCH] chore(deps): bump the everything group across 1 directory with 4 updates Updates the requirements on [prometheus-client](https://github.com/prometheus/client_python), [bittensor](https://github.com/opentensor/bittensor), [async-substrate-interface](https://github.com/opentensor/async-substrate-interface) and [zstandard](https://github.com/indygreg/python-zstandard) to permit the latest version. Updates `prometheus-client` to 0.25.0 - [Release notes](https://github.com/prometheus/client_python/releases) - [Commits](https://github.com/prometheus/client_python/compare/v0.21.0...v0.25.0) Updates `bittensor` from 10.2.0 to 10.4.1 - [Release notes](https://github.com/opentensor/bittensor/releases) - [Changelog](https://github.com/latent-to/bittensor/blob/master/CHANGELOG.md) - [Commits](https://github.com/opentensor/bittensor/compare/v10.2.0...v10.4.1) Updates `async-substrate-interface` to 2.2.0 - [Release notes](https://github.com/opentensor/async-substrate-interface/releases) - [Changelog](https://github.com/latent-to/async-substrate-interface/blob/master/CHANGELOG.md) - [Commits](https://github.com/opentensor/async-substrate-interface/compare/v1.6.2...v2.2.0) Updates `zstandard` to 0.25.0 - [Release notes](https://github.com/indygreg/python-zstandard/releases) - [Changelog](https://github.com/indygreg/python-zstandard/blob/main/docs/news.rst) - [Commits](https://github.com/indygreg/python-zstandard/compare/0.23.0...0.25.0) --- updated-dependencies: - dependency-name: async-substrate-interface dependency-version: 2.2.0 dependency-type: direct:production dependency-group: everything - dependency-name: bittensor dependency-version: 10.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: everything - dependency-name: prometheus-client dependency-version: 0.25.0 dependency-type: direct:production dependency-group: everything - dependency-name: zstandard dependency-version: 0.25.0 dependency-type: direct:development dependency-group: everything ... Signed-off-by: dependabot[bot] --- validator/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/validator/pyproject.toml b/validator/pyproject.toml index b1fc63c..dd138a3 100644 --- a/validator/pyproject.toml +++ b/validator/pyproject.toml @@ -8,18 +8,18 @@ authors = [{ name = "gm contributors" }] dependencies = [ "boto3>=1.35,<2", "pydantic>=2.10,<3", - "prometheus-client>=0.21,<0.23", + "prometheus-client>=0.21,<0.26", # Real on-chain weight submission + metagraph uid lookup. Imported # lazily (inside functions) so the test path, which uses # MockSubmitter, never loads it; declared here because production # and `ty` resolution both need it installed. - "bittensor==10.2.0", + "bittensor==10.4.1", # bittensor 10.2.0 pins scalecodec==1.2.12 but leaves # async-substrate-interface unbounded (>=1.6.2). Its 2.x line swapped # scalecodec for cyscale and raises on import if scalecodec is present, # so an unbounded resolve to 2.x breaks every real-submitter import. # Hold it on the 1.6.x line bittensor 10.2.0 was built against. - "async-substrate-interface>=1.6.2,<2", + "async-substrate-interface>=1.6.2,<3", ] [dependency-groups] @@ -31,7 +31,7 @@ dev = [ "boto3-stubs[s3]>=1.35", "moto[s3]>=5.0", # Test-only: the integration test compresses a raw.jsonl fixture. - "zstandard>=0.23,<0.24", + "zstandard>=0.23,<0.26", ] [build-system]