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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ check-zip:
# Create package source distribution archive
sdist:
@echo -e "Generating python agent sdist package"
@python3.8 setup.py sdist
@python3.8 -m build --sdist
@echo -e "\nDone."

# Check local package source distribution archive contents, without install
Expand Down
6 changes: 4 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ services:
entrypoint: ["/bin/bash", "-c"]
command:
- |
# build for sdist builds
# boto3 for interaction with AWS
# twine to upload to TestPyPi
# tox for automated tests
python3.8 -m pip install --upgrade pip
python3.8 -m pip install --default-timeout=100 boto3 twine tox
python3.8 -m pip install --default-timeout=100 build boto3 twine tox
/bin/bash

aarch64:
Expand All @@ -40,9 +41,10 @@ services:
entrypoint: ["/bin/bash", "-c"]
command:
- |
# build for sdist builds
# boto3 for interaction with AWS
# twine to upload to TestPyPi
# tox for automated tests
python3.8 -m pip install --upgrade pip
python3.8 -m pip install --default-timeout=100 boto3 twine tox
python3.8 -m pip install --default-timeout=100 build boto3 twine tox
/bin/bash
71 changes: 0 additions & 71 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion solarwinds_apm/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.0.9"
__version__ = "4.0.0.10"
Loading