Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

- uses: actions/checkout@v2

- name: Setup python3.10
- name: Setup python3.13
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.13"

- name: Resetting git to master
run: git reset --hard master
Expand Down
23 changes: 12 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python3.10
- name: Setup python3.13
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.13"
- run: python -m pip install poetry==1.4.0
- run: poetry install
- run: poetry run pylama
Expand All @@ -24,10 +24,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python3.10
- name: Setup python3.13
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.13"
- run: python -m pip install poetry
- run: poetry install -vvvv
- run: poetry run mypy
Expand All @@ -37,10 +37,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python3.10
- name: Setup python3.13
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.13"
- run: python -m pip install poetry
- run: poetry install -vvvv
- run: poetry run pytest -svv docs/source
Expand All @@ -55,7 +55,6 @@ jobs:

matrix:
python:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
Expand Down Expand Up @@ -94,8 +93,9 @@ jobs:

matrix:
python:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
steps:
- uses: actions/checkout@v2
- name: Setup python${{ matrix.python }}
Expand All @@ -116,8 +116,9 @@ jobs:

matrix:
python:
- '3.10'
- '3.11'
- '3.12'
- '3.13'
steps:
- uses: actions/checkout@v2
- name: Setup python${{ matrix.python }}
Expand All @@ -142,10 +143,10 @@ jobs:
- 'rpc_udp'
steps:
- uses: actions/checkout@v2
- name: Setup python3.10
- name: Setup python3.13
uses: actions/setup-python@v2
with:
python-version: "3.11"
python-version: "3.13"
- run: python -m pip install poetry
- run: poetry install --with=uvloop -vvvv
- run: poetry run python -m pip install msgspec~=0.9.1
Expand Down
95 changes: 3 additions & 92 deletions poetry.lock

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

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ packages = [
"Documentation" = "https://docs.aiomisc.com/"

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.11"
aiocarbon = { version = "^0.15", optional = true }
aiohttp = { version = ">3", optional = true }
aiohttp-asgi = { version = "^0.5.2", optional = true }
Expand All @@ -79,7 +79,6 @@ aiohttp = "^3.11"
aiohttp-asgi = "~0.5.2"
aiomisc-pytest = "^1.0.8"
asgiref = "^3.7"
async-timeout = "^4.0.2"
autodoc = "^0.5.0"
autoflake = "1.4"
certifi = "^2024.6.2"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_thread_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import threading
import time
import weakref
from asyncio import timeout
from contextlib import suppress

import pytest
from async_timeout import timeout

import aiomisc
from aiomisc import threaded, threaded_iterable
Expand Down
Loading