Skip to content

Commit 228533e

Browse files
Update test.yml (#184)
add 3.10
1 parent cae7bfd commit 228533e

File tree

2 files changed

+44
-25
lines changed

2 files changed

+44
-25
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python: [2.7, 3.6, 3.7, 3.8]
14+
python: [2.7, 3.6, 3.7, 3.8, "3.10"]
1515

1616
name: Python ${{ matrix.python }} Test
1717

requirements.txt

+43-24
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,45 @@
1-
asn1crypto==0.24.0
2-
certifi==2019.3.9
3-
cffi==1.12.3
4-
chardet==3.0.4
5-
cryptography==3.3.2
6-
httpretty==0.9.7
7-
idna==2.8
8-
mock==2.0.0
9-
ndg-httpsclient==0.5.1
10-
nose==1.3.7
11-
pbr==5.1.3
12-
pyasn1==0.4.5
13-
pycparser==2.19
14-
PyNaCl==1.3.0
15-
pyOpenSSL==19.0.0
16-
requests==2.22.0
17-
six==1.12.0
18-
urllib3==1.25.9
19-
aiohttp==3.5.4; python_version >= '3.5'
20-
async-timeout==3.0.1; python_version >= '3.5'
21-
attrs==19.1.0; python_version >= '3.5'
1+
asn1crypto==0.24.0; python_version < '3.10'
2+
certifi==2019.3.9; python_version < '3.10'
3+
cffi==1.15.0; python_version < '3.10'
4+
chardet==3.0.4; python_version < '3.10'
5+
cryptography==3.3.2; python_version < '3.10'
6+
httpretty==0.9.7; python_version < '3.10'
7+
idna==2.8; python_version < '3.10'
8+
mock==2.0.0; python_version < '3.10'
9+
ndg-httpsclient==0.5.1; python_version < '3.10'
10+
nose==1.3.7; python_version < '3.10'
11+
pbr==5.1.3; python_version < '3.10'
12+
pyasn1==0.4.5; python_version < '3.10'
13+
pycparser==2.19; python_version < '3.10'
14+
PyNaCl==1.3.0; python_version < '3.10'
15+
pyOpenSSL==19.0.0; python_version < '3.10'
16+
requests==2.22.0; python_version < '3.10'
17+
six==1.12.0; python_version < '3.10'
18+
urllib3==1.25.9; python_version < '3.10'
19+
aiohttp==3.5.4; python_version >= '3.5' and python_version < '3.10'
20+
aiohttp==3.8.1; python_version >= '3.10'
21+
aiosignal==1.2.0; python_version >= '3.10'
22+
async-timeout==3.0.1; python_version >= '3.5' and python_version < '3.10'
23+
async-timeout==4.0.2; python_version >= '3.10'
24+
attrs==19.1.0; python_version >= '3.5' and python_version < '3.10'
25+
attrs==21.4.0; python_version >= '3.10'
26+
certifi==2021.10.8; python_version >= '3.10'
27+
charset-normalizer==2.0.12; python_version >= '3.10'
28+
cryptography==37.0.1; python_version >= '3.10'
29+
frozenlist==1.3.0; python_version >= '3.10'
30+
httpretty==1.1.4; python_version >= '3.10'
2231
idna-ssl==1.1.0; python_version >= '3.5' and python_version < '3.7'
23-
multidict==4.5.2; python_version >= '3.5'
32+
idna==3.3; python_version >= '3.10'
33+
multidict==4.5.2; python_version >= '3.5' and python_version < '3.10'
34+
multidict==6.0.2; python_version >= '3.10'
35+
py==1.11.0; python_version >= '3.10'
36+
pycparser==2.21; python_version >= '3.10'
37+
PyNaCl==1.5.0; python_version >= '3.10'
38+
pyparsing==3.0.8; python_version >= '3.10'
39+
requests==2.27.1; python_version >= '3.10'
40+
six==1.16.0; python_version >= '3.10'
2441
tornado==5.1.1; python_version < '3.5'
25-
tornado==6.0.2; python_version >= '3.5'
26-
yarl==1.3.0; python_version >= '3.5'
42+
tornado==6.0.2; python_version >= '3.5' and python_version < '3.10'
43+
urllib3==1.26.9; python_version >= '3.10'
44+
yarl==1.3.0; python_version >= '3.5' and python_version < '3.10'
45+
yarl==1.7.2; python_version >= '3.10'

0 commit comments

Comments
 (0)