commit
86d020d309
|
@ -123,7 +123,7 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
os: [windows-latest]
|
||||
python: ['3.9']
|
||||
python: ['3.9', '3.10']
|
||||
spawn_backend: ['trio', 'mp']
|
||||
|
||||
steps:
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
Run windows CI jobs on python 3.10 after some
|
||||
hacks for ``pdbpp`` dependency issues.
|
||||
|
||||
Issue was to do with the now deprecated `pyreadline` project which
|
||||
should be changed over to `pyreadline3`.
|
10
setup.py
10
setup.py
|
@ -51,13 +51,17 @@ setup(
|
|||
'tricycle',
|
||||
'trio_typing',
|
||||
|
||||
# serialization
|
||||
'msgpack>=1.0.3',
|
||||
|
||||
# tooling
|
||||
'colorlog',
|
||||
'wrapt',
|
||||
'pdbpp',
|
||||
|
||||
# serialization
|
||||
'msgpack>=1.0.3',
|
||||
# windows deps workaround for ``pdbpp``
|
||||
# https://github.com/pdbpp/pdbpp/issues/498
|
||||
# https://github.com/pdbpp/fancycompleter/issues/37
|
||||
'pyreadline3 ; platform_system == "Windows"',
|
||||
|
||||
],
|
||||
extras_require={
|
||||
|
|
Loading…
Reference in New Issue