Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Contact [Peter Giacomo Lombardo](https://github.com/pglombardo) to be added._
2. `git checkout master && git pull --rebase && pip install -U twine`
3. Bump the package version in `instana/version.py`. `git` commit & push the version change to the master branch
4. Create a [draft Release on Github](https://github.com/instana/python-sensor/releases)
5. `python setup.py sdist` to create the `instana-<version>.tar.gz` file in `./dist/`
5. `python setup.py sdist bdist_wheel` to create the packages file in `./dist/`
6. Upload the package to Pypi with twine: `twine upload dist/instana-<version>*`
7. Validate the new release on https://pypi.org/project/instana/
8. Update Python documentation with latest changes: https://docs.instana.io/ecosystem/python/
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def check_setuptools():
author='Instana Inc.',
author_email='peter.lombardo@instana.com',
description='🐍 Python Distributed Tracing & Metrics Sensor for Instana',
options={"bdist_wheel": {"universal": True}},
packages=find_packages(exclude=['tests', 'examples']),
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down