Skip to content

Commit

Permalink
Drop Python 3.8 (aio-libs#842)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jan 28, 2025
1 parent a9ab04b commit d62b095
Show file tree
Hide file tree
Showing 2 changed files with 6 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 @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ['pypy-3.8', '3.8', '3.9', '3.10', '3.11', '3.12']
pyver: ['pypy-3.9', '3.9', '3.10', '3.11', '3.12', '3.13']
timeout-minutes: 15
steps:
- name: Checkout
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.13
- name: Install dependencies
run:
python -m pip install -U pip wheel setuptools build twine
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import re

from setuptools import find_packages, setup
from setuptools import setup


with open(os.path.join(os.path.abspath(os.path.dirname(
Expand Down Expand Up @@ -31,11 +31,11 @@ def read(f):
'Intended Audience :: Developers',
'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",
'Topic :: Internet :: WWW/HTTP',
'Framework :: AsyncIO',
"Framework :: aiohttp",
Expand All @@ -44,7 +44,8 @@ def read(f):
author_email='[email protected]',
url='https://github.com/aio-libs/aiohttp_security/',
license='Apache 2',
packages=find_packages(),
packages=("aiohttp_security",),
python_requires=">=3.9",
install_requires=install_requires,
tests_require=tests_require,
include_package_data=True,
Expand Down

0 comments on commit d62b095

Please sign in to comment.