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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
fail-fast: false

steps:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ poetry install

**Requirements:**

- Python 3.12+
- Python 3.11+
- Poetry

## Code Quality
Expand All @@ -31,7 +31,7 @@ This runs:
- Type checking (mypy)
- Tests with coverage

**CI runs automatically on GitHub** when you push or open a PR, testing on Python 3.12, 3.13, and 3.14.
**CI runs automatically on GitHub** when you push or open a PR, testing on Python 3.11, 3.12, 3.13, and 3.14.

## Testing

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Rheo

[![CI](https://github.com/plutopulp/rheo/workflows/CI/badge.svg)](https://github.com/plutopulp/rheo/actions)
[![codecov](https://codecov.io/gh/plutopulp/rheo/branch/main/graph/badge.svg)](https://codecov.io/gh/plutopulp/rheo)
[![PyPI](https://img.shields.io/pypi/v/rheopy)](https://pypi.org/project/rheopy/)
[![Python](https://img.shields.io/pypi/pyversions/rheopy)](https://pypi.org/project/rheopy/)
[![License](https://img.shields.io/pypi/l/rheopy)](https://github.com/plutopulp/rheo/blob/main/LICENSE)
[![CI](https://github.com/plutopulp/rheo/workflows/CI/badge.svg)](https://github.com/plutopulp/rheo/actions)
[![codecov](https://codecov.io/gh/plutopulp/rheo/branch/main/graph/badge.svg)](https://codecov.io/gh/plutopulp/rheo)
[![Commits since release](https://img.shields.io/github/commits-since/plutopulp/rheo/latest)](https://github.com/plutopulp/rheo/compare/latest...main)

Concurrent HTTP download orchestration with async I/O

Expand Down Expand Up @@ -112,7 +113,7 @@ Check [`examples/`](https://github.com/plutopulp/rheo/tree/main/examples) for wo

**Alpha** - Core functionality works, but API may change before 1.0.

- Python: 3.12+
- Python: 3.11+
- License: MIT

## Questions?
Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Self-contained, runnable examples demonstrating common use cases for Rheo.

## Requirements

- Python 3.12+
- Python 3.11+
- Rheo installed: `pip install rheopy` (or `poetry install` for development)
- **Internet connection** (examples use proof.ovh.net for testing)

Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = [
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12,<4.0"
requires-python = ">=3.11,<4.0"
keywords = [
"async",
"asyncio",
Expand All @@ -23,6 +23,7 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
Expand Down Expand Up @@ -83,9 +84,9 @@ markers = [
addopts = "-m 'not network'"

[tool.mypy]
# Since project should be compatible with 3.12 or later,
# we pin it to 3.12 to avoid using features newer than 3.12
python_version = "3.12"
# Since project should be compatible with 3.11 or later,
# we pin it to 3.11 to avoid using features newer than 3.11
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
Expand Down