Fix GitHub Actions workflow: Update Python version requirements

- Update CI workflow to Python 3.9-3.12 (from 3.7-3.11)
- Python 3.7 and 3.8 no longer available on ubuntu-latest (Ubuntu 24.04)
- Add fail-fast: false to continue testing on failures
- Update all documentation to reflect Python 3.9+ requirement

Files updated:
- .github/workflows/tests.yml - New Python versions
- README.md - Badge updated to Python 3.9+
- CLAUDE.md - Prerequisites updated
- CONTRIBUTING.md - Prerequisites updated
- docs/MCP_SETUP.md - Prerequisites updated

This fixes the failing GitHub Actions tests.
This commit is contained in:
yusyus
2025-10-19 22:49:14 +03:00
parent 517ed46338
commit 9ce78e9a16
5 changed files with 9 additions and 8 deletions

View File

@@ -10,15 +10,16 @@ jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']
exclude:
# Exclude some combinations to speed up CI
- os: macos-latest
python-version: '3.7'
python-version: '3.9'
- os: macos-latest
python-version: '3.8'
python-version: '3.10'
steps:
- uses: actions/checkout@v3

View File

@@ -25,7 +25,7 @@ Skill Seeker automatically converts any documentation website into a Claude AI s
## Prerequisites
**Python Version:** Python 3.7 or higher
**Python Version:** Python 3.9 or higher
**Required Dependencies:**
```bash

View File

@@ -103,7 +103,7 @@ We actively welcome your pull requests!
### Prerequisites
- Python 3.7 or higher
- Python 3.9 or higher
- Git
### Setup Steps

View File

@@ -2,7 +2,7 @@
[![Version](https://img.shields.io/badge/version-1.0.0-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases/tag/v1.0.0)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/)
[![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
[![MCP Integration](https://img.shields.io/badge/MCP-Integrated-blue.svg)](https://modelcontextprotocol.io)
[![Tested](https://img.shields.io/badge/Tests-14%20Passing-brightgreen.svg)](tests/)

View File

@@ -25,10 +25,10 @@ Step-by-step guide to set up the Skill Seeker MCP server with Claude Code.
### Required Software
1. **Python 3.7 or higher**
1. **Python 3.9 or higher**
```bash
python3 --version
# Should show: Python 3.7.x or higher
# Should show: Python 3.9.x or higher
```
2. **Claude Code installed**