We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1179796 commit a338577Copy full SHA for a338577
.github/workflows/build_wheels.yml
@@ -21,6 +21,10 @@ jobs:
21
- name: Upgrade pip
22
run: python -m pip install --upgrade pip
23
24
+ - name: Install typed-ast (mypy dep) on windows for pypy wheels
25
+ if: matrix.os == 'windows-2019'
26
+ run: python -m pip install typed-ast
27
+
28
- name: Set up Environment
29
run: echo "CIBW_SKIP=pp36-* pp37-*" >> $GITHUB_ENV
30
unicorn_binance_websocket_api/manager.py
@@ -60,7 +60,7 @@
60
from typing_extensions import Literal
61
62
__app_name__: str = "unicorn-binance-websocket-api"
63
-__version__: str = "2.6.0.dev"
+__version__: str = "2.6.0"
64
65
logger = logging.getLogger("unicorn_binance_websocket_api")
66
0 commit comments