Skip to content
This repository was archived by the owner on Aug 13, 2025. It is now read-only.

Commit d7bd2c9

Browse files
maint: update publish target for PyPI (#170)
## Which problem is this PR solving? - PyPI now requires API tokens instead of username/password for publishing packages which ([caused our last publish attempt to fail](https://app.circleci.com/pipelines/github/honeycombio/honeycomb-opentelemetry-python/655/workflows/2e762044-db51-4917-983b-0b3f637187b4/jobs/4412)) ## Short description of the changes - Update `make publish` to use new PyPI API token ([see PyPI docs here](https://pypi.org/help/#apitoken)) ## How to verify that this has the expected result Next publish attempt should be successful! Ran this command locally and it succeeded in showing this syntax is correct. Co-authored-by: Robb Kidd <[email protected]>
1 parent ddeaa1f commit d7bd2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ build: install
1919

2020
#: build and publish a package
2121
publish: install
22-
poetry publish -u honeycomb -p ${PYPI_PASSWORD}
22+
poetry publish -u '__token__' -p ${PYPI_TOKEN}
2323

2424
#: cleans up smoke test output
2525
clean-smoke-tests:

0 commit comments

Comments
 (0)