Skip to content

Commit

Permalink
Merge branch 'ssl_support' of https://github.com/zrvku2000/aiohttp-de…
Browse files Browse the repository at this point in the history
…vtools into ssl_support
  • Loading branch information
zrvku2000 committed Jan 28, 2025
2 parents 60ed28b + 8fb1e39 commit 63a268a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ jobs:
name: Test
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10', '3.11']
pyver: ['3.9', '3.10', '3.11']
os: [ubuntu, macos, windows]
include:
- pyver: pypy-3.8
- pyver: pypy-3.9
os: ubuntu
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 15
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

docutils==0.20.1
flake8==7.0.0
mypy==1.9.0
mypy==1.14.1
Sphinx==7.2.6
types-pygments==2.17.0.20240310
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
aiohttp==3.10.10
aiohttp==3.11.11
aiohttp-jinja2==1.6
click==8.1.7
coverage==7.4.4
devtools==0.12.2
grablib==0.8
Pygments==2.17.2
pytest==6.2.5
pytest-aiohttp==1.0.5
pytest-aiohttp==1.1.0
pytest-asyncio==0.20.3
pytest-cov==5.0.0
pytest-forked==1.6.0
Expand All @@ -15,4 +15,4 @@ pytest-sugar==1.0.0
pytest-timeout==2.2.0
pytest-toolbox==0.4
pytest-datafiles==3.0.0
watchfiles==0.21.0
watchfiles==1.0.4
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ max-line-length = 120
max-complexity = 10

[bdist_wheel]
python-tag = py38.py39.py310.py311
python-tag = py39.py310.py311.py312.py313
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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",
"Programming Language :: Python :: 3.13",
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
Expand Down Expand Up @@ -70,5 +71,5 @@
'Pygments>=2.2.0',
"watchfiles>=0.10"
],
python_requires=">=3.8",
python_requires=">=3.9",
)

0 comments on commit 63a268a

Please sign in to comment.