Skip to content

Commit f34ccbd

Browse files
jeremymanningclaude
andcommitted
fix: Update license badge and fix Python version requirements in CI
- Change license badge to explicitly show MIT license - Remove Python 3.8, 3.9, 3.10 from GitHub Actions test matrix - Add Python 3.13 to classifiers - Remove obsolete exclusions from test matrix 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 0e1592f commit f34ccbd

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
16-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
17-
exclude:
18-
# Exclude some combinations to reduce test time
19-
- os: windows-latest
20-
python-version: '3.8'
21-
- os: windows-latest
22-
python-version: '3.9'
23-
- os: macos-latest
24-
python-version: '3.8'
25-
- os: macos-latest
26-
python-version: '3.9'
16+
python-version: ['3.11', '3.12']
2717

2818
steps:
2919
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![PyPI Version](https://img.shields.io/pypi/v/py-orc)](https://pypi.org/project/py-orc/)
44
[![Python Versions](https://img.shields.io/pypi/pyversions/py-orc)](https://pypi.org/project/py-orc/)
55
[![Downloads](https://img.shields.io/pypi/dm/py-orc)](https://pypi.org/project/py-orc/)
6-
[![License](https://img.shields.io/pypi/l/py-orc)](https://github.com/ContextLab/orchestrator/blob/main/LICENSE)
6+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/ContextLab/orchestrator/blob/main/LICENSE)
77
[![Tests](https://github.com/ContextLab/orchestrator/actions/workflows/tests.yml/badge.svg)](https://github.com/ContextLab/orchestrator/actions/workflows/tests.yml)
88
[![Coverage](https://github.com/ContextLab/orchestrator/actions/workflows/coverage.yml/badge.svg)](https://github.com/ContextLab/orchestrator/actions/workflows/coverage.yml)
99
[![Documentation](https://readthedocs.org/projects/orc/badge/?version=latest)](https://orc.readthedocs.io/en/latest/?badge=latest)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3",
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2223
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2324
"Topic :: Software Development :: Libraries :: Python Modules",
2425
]

0 commit comments

Comments
 (0)