File tree Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Expand file tree Collapse file tree 3 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 7070 runs-on : ${{ matrix.os }}
7171 strategy :
7272 matrix :
73- python-version : [3.6, 3.7, 3.8]
73+ python-version : [3.5, 3. 6, 3.7, 3.8]
7474 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
7581
7682 steps :
7783 - uses : actions/checkout@v1
Original file line number Diff line number Diff line change 1515 strategy :
1616 max-parallel : 4
1717 matrix :
18- python-version : [3.6, 3.7, 3.8]
18+ python-version : [3.5, 3. 6, 3.7, 3.8]
1919 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
2026
2127 steps :
2228 - uses : actions/checkout@v1
Original file line number Diff line number Diff line change @@ -116,19 +116,18 @@ def build_extensions(self):
116116 # Support macports on Mac OS X.
117117 self .compiler .add_include_dir ('/opt/local/include' )
118118 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' ))
121120 self .distribution .ext_modules [0 ].sources .append (
122121 'vendor/http-parser/http_parser.c' )
123122
124123 super ().build_extensions ()
125124
126125
127- with open (os . path . join (ROOT , 'README.md' )) as f :
126+ with open (str (ROOT / 'README.md' )) as f :
128127 long_description = f .read ()
129128
130129
131- with open (os . path . join (ROOT , 'httptools' , '_version.py' )) as f :
130+ with open (str (ROOT / 'httptools' / '_version.py' )) as f :
132131 for line in f :
133132 if line .startswith ('__version__ =' ):
134133 _ , _ , version = line .partition ('=' )
You can’t perform that action at this time.
0 commit comments