Skip to content

Commit

Permalink
Test on Python up to 3.10 (#634)
Browse files Browse the repository at this point in the history
* Test on Python up to 3.10

* Fix dep name

* Update requirements-dev.txt

Co-authored-by: Sam Bull <aa6bs0@sambull.org>
  • Loading branch information
asvetlov and Dreamsorcerer authored Jan 28, 2022
1 parent 936f763 commit 984decc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- name: Checkout
Expand All @@ -54,12 +54,13 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip build twine
pip install -r requirements-dev.txt
- name: Run tests
run: |
make cov
python setup.py check -rms
python -m build
twine check dist/*
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def read(f):
version=version,
description=("sessions for aiohttp.web"),
long_description="\n\n".join((read("README.rst"), read("CHANGES.txt"))),
long_description_content_type="text/x-rst",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 984decc

Please sign in to comment.