File tree 3 files changed +17
-6
lines changed
3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 70
70
runs-on : ${{ matrix.os }}
71
71
strategy :
72
72
matrix :
73
- python-version : [3.6, 3.7, 3.8]
73
+ python-version : [3.5, 3. 6, 3.7, 3.8]
74
74
os : [ubuntu-16.04, macos-latest, windows-latest]
75
+ exclude :
76
+ # Python 3.5 is unable to properly
77
+ # find the recent VS tooling
78
+ # https://bugs.python.org/issue30389
79
+ - os : windows-latest
80
+ python-version : 3.5
75
81
76
82
steps :
77
83
- uses : actions/checkout@v1
Original file line number Diff line number Diff line change 15
15
strategy :
16
16
max-parallel : 4
17
17
matrix :
18
- python-version : [3.6, 3.7, 3.8]
18
+ python-version : [3.5, 3. 6, 3.7, 3.8]
19
19
os : [windows-latest, ubuntu-18.04, macos-latest]
20
+ exclude :
21
+ # Python 3.5 is unable to properly
22
+ # find the recent VS tooling
23
+ # https://bugs.python.org/issue30389
24
+ - os : windows-latest
25
+ python-version : 3.5
20
26
21
27
steps :
22
28
- uses : actions/checkout@v1
Original file line number Diff line number Diff line change @@ -116,19 +116,18 @@ def build_extensions(self):
116
116
# Support macports on Mac OS X.
117
117
self .compiler .add_include_dir ('/opt/local/include' )
118
118
else :
119
- self .compiler .add_include_dir (
120
- os .path .join (ROOT , 'vendor/http-parser' ))
119
+ self .compiler .add_include_dir (str (ROOT / 'vendor' / 'http-parser' ))
121
120
self .distribution .ext_modules [0 ].sources .append (
122
121
'vendor/http-parser/http_parser.c' )
123
122
124
123
super ().build_extensions ()
125
124
126
125
127
- with open (os . path . join (ROOT , 'README.md' )) as f :
126
+ with open (str (ROOT / 'README.md' )) as f :
128
127
long_description = f .read ()
129
128
130
129
131
- with open (os . path . join (ROOT , 'httptools' , '_version.py' )) as f :
130
+ with open (str (ROOT / 'httptools' / '_version.py' )) as f :
132
131
for line in f :
133
132
if line .startswith ('__version__ =' ):
134
133
_ , _ , version = line .partition ('=' )
You can’t perform that action at this time.
0 commit comments