Skip to content

Commit 64ffc3f

Browse files
authored
Restore PR Condition in Version Check. (#98)
And few updates to README and setup.py
1 parent c74aebf commit 64ffc3f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/lint_n_test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
run: python -m unittest discover
4343
shell: bash
4444
- name: Check Version Updated in setup.py Before Merging
45-
# if: ${{ github.event_name == 'pull_request' }}
45+
if: ${{ github.event_name == 'pull_request' }}
4646
run: |
4747
test -n "$(git diff -G version= origin/master HEAD -- setup.py)" || \
4848
exit "Package version in setup.py must be incremented before merge."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# wavefront-sdk-python
22

3-
[![travis build status](https://travis-ci.com/wavefrontHQ/wavefront-sdk-python.svg?branch=master)](https://travis-ci.com/wavefrontHQ/wavefront-sdk-python)
3+
[![Build Status](https://github.com/wavefrontHQ/wavefront-sdk-python/actions/workflows/main.yml/badge.svg)](https://github.com/wavefrontHQ/wavefront-sdk-python/actions)
44
[![image](https://img.shields.io/pypi/v/wavefront-sdk-python.svg)](https://pypi.org/project/wavefront-sdk-python/)
55
[![image](https://img.shields.io/pypi/l/wavefront-sdk-python.svg)](https://pypi.org/project/wavefront-sdk-python/)
66
[![image](https://img.shields.io/pypi/pyversions/wavefront-sdk-python.svg)](https://pypi.org/project/wavefront-sdk-python/)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setuptools.setup(
1616
name='wavefront-sdk-python',
17-
version='1.8.9', # The version number. Update with each pull request.
17+
version='1.8.10', # The version number. Update with each pull request.
1818
author='Wavefront by VMware',
1919
url='https://github.com/wavefrontHQ/wavefront-sdk-python',
2020
license='Apache-2.0',
@@ -27,10 +27,10 @@
2727
],
2828
classifiers=[
2929
'License :: OSI Approved :: Apache Software License',
30-
'Programming Language :: Python :: 3.6',
3130
'Programming Language :: Python :: 3.7',
3231
'Programming Language :: Python :: 3.8',
3332
'Programming Language :: Python :: 3.9',
33+
'Programming Language :: Python :: 3.10',
3434
],
3535
include_package_data=True,
3636
packages=setuptools.find_packages(exclude=('*.tests', '*.tests.*',

0 commit comments

Comments
 (0)