Skip to content

Commit c894655

Browse files
author
Mat Lord
authored
Merge pull request #34 from stax-labs/feat/python-versions
feat(pypi): Add version compatibility
2 parents f27839d + e717498 commit c894655

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=stax-labs_lib-stax-python-sdk&metric=alert_status&token=a1841dea3e7b4f749a99ea4351e95de1775f39fb)](https://sonarcloud.io/dashboard?id=stax-labs_lib-stax-python-sdk)
55
![build](https://github.com/stax-labs/lib-stax-python-sdk/workflows/build/badge.svg)
66
![deploy](https://github.com/stax-labs/lib-stax-python-sdk/workflows/deploy/badge.svg)
7-
7+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/staxapp)
88
## Authentication
99
In order to use the Stax SDK for Python, you will need a valid [Stax API Token](https://www.stax.io/docs/stax_team/access_stax_api_with_an_api_token/).
1010

setup.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,18 @@ def get_version():
3838
include_package_data=True,
3939
package_data={"staxapp": ["data/*.json"]},
4040
zip_safe=False,
41-
python_requires=">=3",
41+
python_requires=">=3.6",
4242
project_urls={"GitHub": "https://github.com/stax-labs/lib-stax-python-sdk"},
43+
classifiers=[
44+
'Development Status :: 4 - Beta',
45+
'Intended Audience :: Developers',
46+
'Natural Language :: English',
47+
'License :: OSI Approved :: Apache Software License',
48+
'Programming Language :: Python',
49+
'Programming Language :: Python :: 3',
50+
'Programming Language :: Python :: 3.6',
51+
'Programming Language :: Python :: 3.7',
52+
'Programming Language :: Python :: 3.8',
53+
'Programming Language :: Python :: 3.9',
54+
],
4355
)

staxapp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

0 commit comments

Comments
 (0)