Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,18 +209,6 @@ jobs:
uv pip install --upgrade coveralls
coveralls --finish --rcfile .coveragerc || echo "Failed to upload coverage"

check-version-updated:
docker:
- image: cimg/python:3.10
steps:
- checkout

- run:
name: Version is updated
command: |
[[ $(git diff-tree --no-commit-id --name-only -r HEAD..master | grep bittensor/__init__.py | wc -l) == 1 ]] && echo "bittensor/__init__.py has changed"
[[ $(git diff-tree --no-commit-id --name-only -r HEAD..master | grep VERSION | wc -l) == 1 ]] && echo "VERSION has changed"

check-changelog-updated:
docker:
- image: cimg/python:3.10
Expand Down Expand Up @@ -297,11 +285,6 @@ workflows:

release-branches-requirements:
jobs:
- check-version-updated:
filters:
branches:
only:
- /^(release|hotfix)/.*/
- check-changelog-updated:
filters:
branches:
Expand Down
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: ""
file: "pyproject.toml"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 0 # Only security updates will be opened as PRs
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

5 changes: 3 additions & 2 deletions bittensor/core/settings.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
__version__ = "9.3.0"

import os
import importlib.metadata
import re
from pathlib import Path

Expand All @@ -15,6 +14,8 @@
WALLETS_DIR = USER_BITTENSOR_DIR / "wallets"
MINERS_DIR = USER_BITTENSOR_DIR / "miners"

__version__ = importlib.metadata.version("bittensor")


if not READ_ONLY:
# Create dirs if they don't exist
Expand Down
Loading