File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 43
43
runs-on : ubuntu-latest
44
44
strategy :
45
45
matrix :
46
- python-version : [3.7, 3.8, 3.9]
46
+ python-version : [' 3.7', ' 3.8', ' 3.9', '3.10' ]
47
47
48
48
steps :
49
49
- name : Checkout
@@ -54,12 +54,13 @@ jobs:
54
54
python-version : ${{ matrix.python-version }}
55
55
- name : Install dependencies
56
56
run : |
57
- pip install --upgrade pip
57
+ pip install --upgrade pip build twine
58
58
pip install -r requirements-dev.txt
59
59
- name : Run tests
60
60
run : |
61
61
make cov
62
- python setup.py check -rms
62
+ python -m build
63
+ twine check dist/*
63
64
- name : Upload coverage
64
65
uses : codecov/codecov-action@v1
65
66
with :
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ def read(f):
34
34
version = version ,
35
35
description = ("sessions for aiohttp.web" ),
36
36
long_description = "\n \n " .join ((read ("README.rst" ), read ("CHANGES.txt" ))),
37
+ long_description_content_type = "text/x-rst" ,
37
38
classifiers = [
38
39
"License :: OSI Approved :: Apache Software License" ,
39
40
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments