We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e93338c commit 27a4ae5Copy full SHA for 27a4ae5
2 files changed
.github/actions/lint_n_test/action.yml
@@ -39,6 +39,9 @@ runs:
39
- name: PyDocStyle
40
run: python -m pydocstyle
41
shell: bash
42
+ - name: Install local ${{ inputs.input_pkg_name }} pkg in editable mode
43
+ run: python -m pip install -e ${{ inputs.input_pkg_name }}
44
+ shell: bash
45
- name: Execute Unit Tests
46
run: python -m unittest discover -s ./test*
47
setup.py
@@ -11,7 +11,7 @@
11
12
setuptools.setup(
13
name='wavefront-sdk-python',
14
- version='2.1.1', # Please update with each pull request.
+ version='2.1.2', # Please update with each pull request.
15
author='VMware Aria Operations for Applications Team',
16
url='https://github.com/wavefrontHQ/wavefront-sdk-python',
17
license='Apache-2.0',
0 commit comments