Skip to content

Commit

Permalink
Merge branch 'master' into feature/mock-mode-introspection
Browse files Browse the repository at this point in the history
  • Loading branch information
byewokko committed Oct 30, 2024
2 parents f395f22 + 9e1682d commit ef122f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion asab/web/auth/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ async def build_authorization(self, id_token: str) -> Authorization:
return authz


async def _delete_invalid_authorizations(self):
async def _delete_invalid_authorizations(self, message_name):
"""
Check for expired Authorization objects and delete them
"""
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def run(self):
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='asyncio',
packages=find_packages(exclude=['module_sample']),
Expand All @@ -77,7 +77,6 @@ def run(self):
'fastjsonschema>=2.16.2,<3',
'kazoo>=2.9.0,<3',
'PyYAML>=6.0,<7',
'yarl<1.15.3', # aiohttp dependency, later versions break Python 3.8 compatibility
],
extras_require={
'git': 'pygit2<1.12', # For Alpine 3.16 / Python 3.10, use pygit2>=1.9,<1.10
Expand Down

0 comments on commit ef122f7

Please sign in to comment.