Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
dc441af
improve make file
Jul 11, 2025
3509863
Merge pull request #2965 from opentensor/feat/roman/make-update
basfroman Jul 14, 2025
436b3bf
add ruff checker
Jul 15, 2025
76da2ef
add flake8 and mypy checkers
Jul 15, 2025
1b1301b
add tests checkers
Jul 15, 2025
bf7caad
add compatibility checkers
Jul 15, 2025
3078d19
add changelog checker
Jul 15, 2025
0688326
temporarily comment on the ci workflow
Jul 15, 2025
4a8a947
add permissions and delete CI workflow
Jul 15, 2025
47ea90e
remove deprecated workflow
Jul 15, 2025
0ea2338
rename job
Jul 15, 2025
c5c3cad
rename and add matrix
Jul 15, 2025
ad517e7
update workflow name
Jul 15, 2025
4aa1c7b
Merge pull request #2970 from opentensor/feat/roman/ci.yml-to-gh-actions
basfroman Jul 15, 2025
6191101
improve changelog workflow
Jul 16, 2025
81e0a44
Merge pull request #2973 from opentensor/fix/roman/improve-changelog-…
basfroman Jul 16, 2025
6784b85
add `LOCALNET_IMAGE_NAME` local env variable
Jul 16, 2025
dc48920
add nightly tests
Jul 16, 2025
07952fc
cleanup and improve regular e2e tests workflow
Jul 16, 2025
320afde
improve
Jul 16, 2025
fcc6a35
fix `- '**'`
Jul 16, 2025
183d65c
fix python version
Jul 16, 2025
21821b8
add permissions
Jul 16, 2025
ad986d5
fix test
Jul 16, 2025
aefa1d5
fix test
Jul 16, 2025
9665972
Merge pull request #2975 from opentensor/fix/roman/fix-after-devnet-r…
basfroman Jul 16, 2025
3e36ff1
Merge branch 'staging' into feat/roman/Improve-test-infrastructure
Jul 16, 2025
6b85ab2
Add SECURITY.md
Jul 17, 2025
ea3159f
Merge pull request #2976 from opentensor/feat/roman/add-SECURITY.md
basfroman Jul 17, 2025
edf482e
Merge pull request #2974 from opentensor/feat/roman/Improve-test-infr…
basfroman Jul 17, 2025
9e2eedd
add labels checker
Jul 18, 2025
c688e47
add trigger
Jul 18, 2025
fdf04de
unique group name
Jul 18, 2025
b6f06d8
improvements
Jul 18, 2025
2de2a6c
oops
Jul 18, 2025
d746cf2
trigger CI
Jul 18, 2025
98ab70b
if
Jul 18, 2025
fb7e078
fix double run
Jul 18, 2025
f09d690
kill forever happy test
Jul 18, 2025
5b6c6c8
`AsyncSubtensor.get_metagraph_info` was only using the block/hash spe…
thewhaleking Jul 18, 2025
41426a6
Also wrong on subnet_prices
thewhaleking Jul 18, 2025
a5ddfd4
Also wrong on async subnet prices
thewhaleking Jul 18, 2025
51ad4f4
More missed
thewhaleking Jul 18, 2025
9f47cf6
PR Suggestions
thewhaleking Jul 18, 2025
56ad8b4
Flake
thewhaleking Jul 18, 2025
45deb93
Merge pull request #2977 from opentensor/feat/roman/add-labels-checker
basfroman Jul 18, 2025
ba52aa2
Merge pull request #2979 from opentensor/fix/thewhaleking/block-hash-…
thewhaleking Jul 18, 2025
cc611e9
Updates version+changelog
thewhaleking Jul 18, 2025
bd62449
Merge pull request #2981 from opentensor/changelog/9.8.3
thewhaleking Jul 18, 2025
a77bcaf
Merge branch 'master' into release/9.8.3
ibraheem-abe Jul 18, 2025
70225c0
Removes 2975 from changelog for 9.8.3
thewhaleking Jul 18, 2025
56eef65
Merge pull request #2983 from opentensor/fix/thewhaleking/update-9.8.…
thewhaleking Jul 18, 2025
b0fe401
Merge branch 'staging' into release/9.8.3
thewhaleking Jul 18, 2025
5322803
Revert "Merge pull request #2975 from opentensor/fix/roman/fix-after-…
thewhaleking Jul 18, 2025
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
26 changes: 0 additions & 26 deletions .circleci/check_pr_status.sh

This file was deleted.

300 changes: 0 additions & 300 deletions .circleci/config.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/auto-assign.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/changelog-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Changelog guard (for release of hotfix)

permissions:
contents: read

on:
pull_request:
branches:
- staging
- master

jobs:
changelog:
if: startsWith(github.head_ref, 'release/') || startsWith(github.head_ref, 'hotfix/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v42
id: changed
- name: Ensure CHANGELOG.md updated
if: contains(steps.changed.outputs.all_changed_files, 'CHANGELOG.md') == false
uses: actions/github-script@v7
with:
script: core.setFailed('CHANGELOG.md must be updated.')
27 changes: 27 additions & 0 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Requirements compatibility for supported Python versions
permissions:
contents: read

on:
pull_request:
paths:
- "pyproject.toml"

jobs:
compatibility:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- run: |
python -m pip install --upgrade pip
python -m pip install ".[dev,cli]" --dry-run --no-deps
Loading
Loading