diff --git a/.github/scripts/check_version_consistency.py b/.github/scripts/check_version_consistency.py deleted file mode 100755 index fe4d77c2d2..0000000000 --- a/.github/scripts/check_version_consistency.py +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env python3 -import os -import re -import sys - - -def find_version_references(directory: str) -> tuple[set[str], set[str]]: - openhands_versions = set() - runtime_versions = set() - - version_pattern_openhands = re.compile(r'openhands:(\d{1})\.(\d{2})') - version_pattern_runtime = re.compile(r'runtime:(\d{1})\.(\d{2})') - - for root, _, files in os.walk(directory): - # Skip .git directory and docs/build directory - if '.git' in root or 'docs/build' in root: - continue - - for file in files: - if file.endswith( - ('.md', '.yml', '.yaml', '.txt', '.html', '.py', '.js', '.ts') - ): - file_path = os.path.join(root, file) - try: - with open(file_path, 'r', encoding='utf-8') as f: - content = f.read() - - # Find all openhands version references - matches = version_pattern_openhands.findall(content) - if matches: - print(f'Found openhands version {matches} in {file_path}') - openhands_versions.update(matches) - - # Find all runtime version references - matches = version_pattern_runtime.findall(content) - if matches: - print(f'Found runtime version {matches} in {file_path}') - runtime_versions.update(matches) - except Exception as e: - print(f'Error reading {file_path}: {e}', file=sys.stderr) - - return openhands_versions, runtime_versions - - -def main(): - repo_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')) - print(f'Checking version consistency in {repo_root}') - openhands_versions, runtime_versions = find_version_references(repo_root) - - print(f'Found openhands versions: {sorted(openhands_versions)}') - print(f'Found runtime versions: {sorted(runtime_versions)}') - - exit_code = 0 - - if len(openhands_versions) > 1: - print('Error: Multiple openhands versions found:', file=sys.stderr) - print('Found versions:', sorted(openhands_versions), file=sys.stderr) - exit_code = 1 - elif len(openhands_versions) == 0: - print('Warning: No openhands version references found', file=sys.stderr) - - if len(runtime_versions) > 1: - print('Error: Multiple runtime versions found:', file=sys.stderr) - print('Found versions:', sorted(runtime_versions), file=sys.stderr) - exit_code = 1 - elif len(runtime_versions) == 0: - print('Warning: No runtime version references found', file=sys.stderr) - - sys.exit(exit_code) - - -if __name__ == '__main__': - main() diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e155d206ce..89cb645f5f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -90,16 +90,3 @@ jobs: - name: Run pre-commit hooks working-directory: ./openhands-cli run: pre-commit run --all-files --config ./dev_config/python/.pre-commit-config.yaml - - # Check version consistency across documentation - check-version-consistency: - name: Check version consistency - runs-on: blacksmith-4vcpu-ubuntu-2204 - steps: - - uses: actions/checkout@v4 - - name: Set up python - uses: useblacksmith/setup-python@v6 - with: - python-version: 3.12 - - name: Run version consistency check - run: .github/scripts/check_version_consistency.py