diff --git a/.github/actions/lint_n_test/action.yml b/.github/actions/lint_n_test/action.yml index b1e86b5..c22936b 100644 --- a/.github/actions/lint_n_test/action.yml +++ b/.github/actions/lint_n_test/action.yml @@ -39,8 +39,8 @@ runs: - name: PyDocStyle run: python -m pydocstyle shell: bash - - name: Install local ${{ inputs.input_pkg_name }} pkg in editable mode - run: python -m pip install -e ${{ inputs.input_pkg_name }} + - name: Install pkg in editable mode + run: python -m pip install -e ./ shell: bash - name: Execute Unit Tests run: python -m unittest discover -s ./test* diff --git a/setup.py b/setup.py index 9823d43..c33253e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setuptools.setup( name='wavefront-sdk-python', - version='2.1.2', # Please update with each pull request. + version='2.1.3', # Please update with each pull request. author='VMware Aria Operations for Applications Team', url='https://github.com/wavefrontHQ/wavefront-sdk-python', license='Apache-2.0',