Skip to content

Commit 15ace87

Browse files
committed
rmv 3.6 from CI matrix
1 parent 91fce33 commit 15ace87

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

‎.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10.0-beta.4"]
18+
python-version: [3.7, 3.8, 3.9, "3.10.0-beta.4"]
1919

2020
steps:
2121
- uses: actions/checkout@v2

‎git/cmd.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ def dict_to_slots_and__excluded_are_none(self: object, d: Mapping[str, Any], exc
164164

165165
## CREATE_NEW_PROCESS_GROUP is needed to allow killing it afterwards,
166166
# see https://docs.python.org/3/library/subprocess.html#subprocess.Popen.send_signal
167-
PROC_CREATIONFLAGS = (CREATE_NO_WINDOW | subprocess.CREATE_NEW_PROCESS_GROUP
168-
if is_win else 0)
167+
PROC_CREATIONFLAGS = (CREATE_NO_WINDOW | subprocess.CREATE_NEW_PROCESS_GROUP if is_win else 0)
169168

170169

171170
class Git(LazyMixin):

‎git/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,9 @@ def __init__(self, file_or_files: Union[None, PathLike, 'BytesIO', Sequence[Unio
301301
302302
"""
303303
cp.RawConfigParser.__init__(self, dict_type=_OMD)
304-
self._dict: Callable[..., _OMD] # type: ignore[assignment] # mypy/typeshed bug
304+
self._dict: Callable[..., _OMD] # type: ignore # mypy/typeshed bug?
305305
self._defaults: _OMD
306-
self._sections: _OMD # type: ignore[assignment] # mypy/typeshed bug
306+
self._sections: _OMD # type: ignore # mypy/typeshed bug?
307307

308308
# Used in python 3, needs to stay in sync with sections for underlying implementation to work
309309
if not hasattr(self, '_proxies'):

0 commit comments

Comments
 (0)