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
6 changes: 1 addition & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,17 +244,13 @@ jobs:
}}
matrix:
python-version:
# NOTE: The latest and the lowest supported Pythons are prioritized
# NOTE: to improve the responsiveness. It's nice to see the most
# NOTE: important results first.
- 3.13
- 3.9
- 3.12
- 3.11
- >-
3.10
runner-vm-os:
- ubuntu-24.04
- ubuntu-latest
toxenv:
- py
xfail:
Expand Down
17 changes: 0 additions & 17 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,23 +97,6 @@ repos:
- --lineprecision-report=.tox/.tmp/.test-results/mypy--py-3.11
- --txt-report=.tox/.tmp/.test-results/mypy--py-3.11
pass_filenames: false
- id: mypy
alias: mypy-py39
name: MyPy, for Python 3.9
additional_dependencies:
- frozenlist # runtime dependency
- lxml # dep of `--txt-report`, `--cobertura-xml-report` & `--html-report`
- pytest
args:
- --python-version=3.9
- --any-exprs-report=.tox/.tmp/.test-results/mypy--py-3.9
- --cobertura-xml-report=.tox/.tmp/.test-results/mypy--py-3.9
- --html-report=.tox/.tmp/.test-results/mypy--py-3.9
- --linecount-report=.tox/.tmp/.test-results/mypy--py-3.9
- --linecoverage-report=.tox/.tmp/.test-results/mypy--py-3.9
- --lineprecision-report=.tox/.tmp/.test-results/mypy--py-3.9
- --txt-report=.tox/.tmp/.mypy/python-3.9
pass_filenames: false
ci:
skip:
- actionlint-docker
Expand Down
8 changes: 0 additions & 8 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ Installation

$ pip install aiosignal

The library requires Python 3.8 or newer.

Dependencies
------------

Expand All @@ -75,12 +73,6 @@ Feel free to post your questions and ideas here.

*gitter chat* https://gitter.im/aio-libs/Lobby

Requirements
============

- Python >= 3.8
- frozenlist >= 1.0.0

License
=======

Expand Down
2 changes: 1 addition & 1 deletion requirements/wheel.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==8.4.2
pytest-asyncio==1.2.0
pytest-asyncio==1.3.0
pre-commit==4.3.0
twine==6.2.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers =
Framework :: AsyncIO

[options]
python_requires = >=3.9
python_requires = >=3.10
packages = find:
include_package_data = True

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = check, clean, {py39,py310,py311,py312,py313}, report
envlist = check, clean, {py310,py311,py312,py313,py314}, report
minversion = 4


Expand Down