Skip to content
Merged

Dev #127

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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --no-root -E test
poetry install --no-root --all-extras
- name: Run pre-commit hooks
run: poetry run pre-commit run --hook-stage merge-commit --all-files
- name: Run tests
Expand Down
11 changes: 4 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
args:
- --fix=no
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
rev: v3.2.0
hooks:
- id: add-trailing-comma
stages:
Expand All @@ -39,11 +39,11 @@ repos:
args:
- --diff
- repo: https://github.com/pycqa/flake8
rev: 7.1.1
rev: 7.2.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 5.13.2
rev: 6.0.1
hooks:
- id: isort
name: fix import order
Expand All @@ -63,7 +63,7 @@ repos:
- --multi-line=9
- --project=pjrpc
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.13.0
rev: v1.15.0
hooks:
- id: mypy
stages:
Expand All @@ -75,12 +75,9 @@ repos:
- aiohttp>=3.7
- httpx>=0.23.0
- pydantic>=2.0
- types-jsonschema>=3.0,<4.0
- types-requests>=2.0
- aio-pika>=8.0
- docstring_parser>=0.8
- werkzeug>=2.0
- pytest>=7.4.0
- starlette>=0.25.0
- flask>=2.0.0
- openapi-ui-bundles>=0.3.0
13 changes: 5 additions & 8 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.9"
python: "3.12"
jobs:
post_install:
- pip install poetry
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs

sphinx:
configuration: docs/source/conf.py

python:
install:
- method: pip
path: .
extra_requirements:
- docs
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
=========


2.0.0 (2025-10-24)
-------------------

- client batch reqeust api simplified.
- client tracers replaced by middlewares
- server method params validation performance improved
- server schema generation bugs fixed
- client/server typing improved


1.15.0 (2025-05-18)
-------------------

Expand Down
Loading