File tree Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 12
12
strategy :
13
13
fail-fast : false
14
14
matrix :
15
- include :
15
+ include :
16
16
- python-version : " 2.7"
17
17
env :
18
18
TOXENV : " msgpack"
50
50
- python-version : " 3.9"
51
51
env :
52
52
TOXENV : " json"
53
-
53
+ - python-version : " 3.10"
54
+ env :
55
+ TOXENV : " msgpack"
56
+ - python-version : " 3.10"
57
+ env :
58
+ TOXENV : " json"
59
+
54
60
steps :
55
61
- uses : actions/checkout@v2
56
62
- name : Set up Python ${{ matrix.python-version }}
65
71
tox
66
72
67
73
- name : Upload to codecov
68
- uses : codecov/codecov-action@v2
74
+ uses : codecov/codecov-action@v2
Original file line number Diff line number Diff line change 1
- import time
2
1
import json
3
- import socket
4
2
import logging
5
- from collections import MutableMapping
3
+ import socket
4
+ import time
5
+ try :
6
+ from collections .abc import MutableMapping
7
+ except ImportError :
8
+ from collections import MutableMapping
6
9
7
10
import six
8
- from six .moves import range
9
11
import requests .exceptions as rexc
12
+ from six .moves import range
10
13
11
14
from .utils import urlpathjoin , xauth
12
15
from .serialization import jlencode , jldecode , mpdecode
Original file line number Diff line number Diff line change 40
40
'Programming Language :: Python :: 3.5' ,
41
41
'Programming Language :: Python :: 3.6' ,
42
42
'Programming Language :: Python :: 3.7' ,
43
+ 'Programming Language :: Python :: 3.8' ,
44
+ 'Programming Language :: Python :: 3.9' ,
45
+ 'Programming Language :: Python :: 3.10' ,
43
46
'Programming Language :: Python :: Implementation :: CPython' ,
44
47
'Programming Language :: Python :: Implementation :: PyPy' ,
45
48
'Topic :: Internet :: WWW/HTTP' ,
You can’t perform that action at this time.
0 commit comments