Skip to content

Commit d62b095

Browse files
Drop Python 3.8 (#842)
1 parent a9ab04b commit d62b095

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
strategy:
5151
matrix:
52-
pyver: ['pypy-3.8', '3.8', '3.9', '3.10', '3.11', '3.12']
52+
pyver: ['pypy-3.9', '3.9', '3.10', '3.11', '3.12', '3.13']
5353
timeout-minutes: 15
5454
steps:
5555
- name: Checkout
@@ -102,7 +102,7 @@ jobs:
102102
- name: Setup Python
103103
uses: actions/setup-python@v5
104104
with:
105-
python-version: 3.8
105+
python-version: 3.13
106106
- name: Install dependencies
107107
run:
108108
python -m pip install -U pip wheel setuptools build twine

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import re
33

4-
from setuptools import find_packages, setup
4+
from setuptools import setup
55

66

77
with open(os.path.join(os.path.abspath(os.path.dirname(
@@ -31,11 +31,11 @@ def read(f):
3131
'Intended Audience :: Developers',
3232
'Programming Language :: Python',
3333
'Programming Language :: Python :: 3',
34-
"Programming Language :: Python :: 3.8",
3534
"Programming Language :: Python :: 3.9",
3635
"Programming Language :: Python :: 3.10",
3736
"Programming Language :: Python :: 3.11",
3837
"Programming Language :: Python :: 3.12",
38+
"Programming Language :: Python :: 3.13",
3939
'Topic :: Internet :: WWW/HTTP',
4040
'Framework :: AsyncIO',
4141
"Framework :: aiohttp",
@@ -44,7 +44,8 @@ def read(f):
4444
author_email='[email protected]',
4545
url='https://github.com/aio-libs/aiohttp_security/',
4646
license='Apache 2',
47-
packages=find_packages(),
47+
packages=("aiohttp_security",),
48+
python_requires=">=3.9",
4849
install_requires=install_requires,
4950
tests_require=tests_require,
5051
include_package_data=True,

0 commit comments

Comments
 (0)