Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for py3.7. #19

Merged
merged 4 commits into from
Jul 9, 2024
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: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install prerequisites
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Aiohttp transport for Spyne RPC library.

Requirements:

* Python 3.7, 3.8, 3.9, 3.10, 3.11
* Aiohttp >= 3.7.0
* Python 3.8, 3.9, 3.10, 3.11
* Aiohttp >= 3.9.0
* Spyne >= 2.14.0

Spyne alpha versions should also work.
Expand Down Expand Up @@ -89,7 +89,7 @@ handler = AIOSpyne(spyne_app, cache_wsdl=False)

1. `pytest`
2. `mypy -p aiohttp_spyne`
4. `black aiohttp_spyne/`
3. `black aiohttp_spyne/`

## License

Expand Down
2 changes: 1 addition & 1 deletion aiohttp_spyne/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.5.0"
__version__ = "1.6.0"
from .aio_spyne import AIOSpyne # noqa: F401
Loading