Skip to content

Commit

Permalink
Merge branch 'master' into pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov authored Nov 29, 2024
2 parents 511cb4e + 671f0d6 commit 631e1e8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
name: Test
strategy:
matrix:
pyver: ['3.8', '3.9', '3.10', '3.11', '3.12']
pyver: ['3.9', '3.10', '3.11', '3.12', '3.13']
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 Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run:
python -m pip install -U pip wheel setuptools build twine
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

flake8==7.1.1
flake8-bandit==4.1.1
flake8-bugbear==24.8.19
flake8-bugbear==24.10.31
flake8-import-order==0.18.2
flake8-requirements==2.2.1
mypy==1.13.0; implementation_name=="cpython"
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-e .
aiohttp==3.10.10
aiohttp==3.11.8
alabaster>=0.6.2
coverage==7.6.1
coverage==7.6.8
jinja2==3.1.4
pytest==8.3.3
pytest-aiohttp==1.0.5
pytest-cov==5.0.0
yarl==1.15.2
pytest-cov==6.0.0
yarl==1.18.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,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",
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: WWW/HTTP",
"Framework :: AsyncIO",
Expand All @@ -52,7 +52,7 @@ def read(f):
url="https://github.com/aio-libs/aiohttp_jinja2/",
license="Apache 2",
packages=["aiohttp_jinja2"],
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=("aiohttp>=3.9.0", "jinja2>=3.0.0"),
include_package_data=True,
)

0 comments on commit 631e1e8

Please sign in to comment.