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 674e137 commit b2392c0Copy full SHA for b2392c0
.github/workflows/python-app.yml
@@ -66,6 +66,7 @@ jobs:
66
run: |
67
python -m pip uninstall mixin-python -y;python -m pip install ./dist/${{ steps.whlfile.outputs.value }}
68
- name: Test
69
+ if: ${{ matrix.os != 'windows-latest' }}
70
working-directory: tests
71
72
python3 -m pytest -s -x test_testnet.py -k test_hello
pysrc/__init__.py
@@ -1,5 +1,6 @@
1
from . import mixin_api
2
from . import mixin_bot_api
3
+__VERSION__ = '0.2.0'
4
5
default_api = mixin_api.MixinApi()
6
setup.py
@@ -20,7 +20,7 @@
20
21
setup(
22
name="mixin",
23
- version="0.1.0",
+ version="0.2.0",
24
description="Mixin Binding Project",
25
author='learnforpractice',
26
license="MIT",
0 commit comments