Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Fix up pushing to pypi #35

Merged
merged 1 commit into from
Jun 28, 2019
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ deploy:
on:
tags: true
distributions: sdist bdist_wheel
skip_existing: true
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PYTHON ?= $(shell command -v python3 2>/dev/null || command -v python)
DESTDIR ?= /
PODMAN_VERSION ?= '0.11.1.1'
PODMAN_VERSION ?= '0.12'

.PHONY: python-podman
python-podman:
Expand All @@ -23,6 +23,7 @@ install:
.PHONY: upload
upload:
PODMAN_VERSION=$(PODMAN_VERSION) $(PYTHON) setup.py sdist bdist_wheel
twine check dist/*
twine upload --verbose dist/*
twine upload --verbose --repository-url https://test.pypi.org/legacy/ dist/*

Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ project_urls =
Bug Tracker = https://github.com/containers/python-podman/issues
Source Code = https://github.com/containers/python-podman
summary = A library to interact with a Podman server
description-file =
README.md
description_file = README.md
description_content_type = text/markdown
author = Jhon Honce
author-email = [email protected]
author_email = [email protected]
license = Apache Software License
classifier =
Development Status :: 3 - Alpha
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
setup(
setup_requires=['pbr'],
pbr=True,
long_description_content_type="text/markdown",
)