Questions tagged [twine]

For questions about the Python package used for uploading distributions to the Python Package Index (PyPI).

Use the tag if your question is about any of the features found in the Twine package.

This can include, but is not limited to:

  • interacting with PyPI
  • uploading to PyPI

Twine is a utility for securely interacting with PyPI over HTTPS. PyPI is the Python Package Index - a repository of software for the Python programming language.

Twine is one of two ways to upload to PyPI, the other being through the "setup.py upload" command.

When tagging with consider tagging with as well.

145 questions
0
votes
1 answer

pypi package tag not same as the latest version

I uploaded a package to test.pypi.org with the version 1.6.2 and put the git tag 1.6.2 on the latest commit. However, the image under Project description is showing 1.6.1 - which is another git annotated tag in the master branch. Could someone…
Saim Raza
  • 1,420
  • 13
  • 16
0
votes
0 answers

Unable to push text files to pypi

I'm having some problems trying to push my package to pypi. Everything is fine and smooth but twine doesn't upload text files. You can find repo here: https://github.com/piotr-rarus/evobench Pipeline is here:…
Piotr Rarus
  • 884
  • 8
  • 16
0
votes
1 answer

Artifact feed python twine doesnt find it

I am using Artifacts feeds of Dev Ops for python package distribution, I used my default feed precrated inside artifacts of my own "Organization" and I can upload by "twine" python tool (a package) but not in the feed created by me ( not default). I…
Snowww
  • 1
  • 2
0
votes
1 answer

tqdm._tqdm.TqdmKeyError: "Unknown argument(s): {'unit_divisor': 1024}"

I am trying to upload my library to Pypi via twine and I am getting some error that is related to tqdm. Can anyone please help. The command is twine upload dist/* twine version 1.13.0 python version 3.6 Error : TqdmKeyError("Unknown argument(s): "…
Trect
  • 2,759
  • 2
  • 30
  • 35
0
votes
1 answer

azure devops python twine update failed

I try to create a build pipeline for uploading my python package to an Azure DevOps Artifact Feed. With my default feed it works fine by using this yaml - script: | python setup.py sdist displayName: 'Make sdist' - script: | python…
0
votes
1 answer

CSS: How to pin/fix elements relative to the background?

I make quest using twine. I need all the elements to behave as a single solid object when changing the screen size. Now their positions are independent of each other. In Twine I can manage all objects through the tw-story (like .body) or use…
0
votes
1 answer

pip: why doesn't twine command show up sometimes

I installed twine using the user flag (user scheme, according to the documentation): pip install --user twine But I can't use it as a command. For e.g. if I do: twine --version It gives me (this is obvious): -bash: twine: command not found I read…
R4444
  • 2,016
  • 2
  • 19
  • 30
0
votes
1 answer

unexpected package version getting uploaded to artifactory

I'm usint the following twine COMMAND TO UPLOAD A PACKAGE TO ARTIFACTORY: twine upload --repository-url https://artifactory-url.com/ dist/* --user username --password password It outputs this: Uploading distributions to…
runnerpaul
  • 5,942
  • 8
  • 49
  • 118
0
votes
1 answer

twine has no positional arguments

On windows 10. Tried to follow https://packaging.python.org/tutorials/packaging-projects/, adapting for python 2.7 Not seeing any positional arguments from twine -- not sure how to debug. The following is after uninstall of twine. $>pip install…
Lou K
  • 1,128
  • 2
  • 12
  • 31
0
votes
0 answers

Got ImportError: No module named pathlib, when upload python module

I built a python module, and tried to submit it to pypi with twine. But I get a confusing error ImportError: No module named pathlib. pathlib is a standard lib in python as os.path that does not report error. Following is the code import…
William Song
  • 577
  • 6
  • 17
0
votes
0 answers

ModuleNotFoundError: No module named 'xxx'

I try upload a package to pypi ,but i can't run it when i install it in other where . Traceback (most recent call last): File "/Users/bestony/Downloads/abc-mod/venv/bin/abc", line 7, in from xxx.core import main ModuleNotFoundError:…
user3977623
0
votes
1 answer

VersionConflict between tdqm==4.11.2 and twine==1.11.0 python

When building a python project in Jenkins I have following packages installed: tdqm==4.11.2 twine==1.11.0 later on when i try to invoke twine upload -r my_pypi --skip-existing dist/* i get twine upload -r my_pypi --skip-existing dist/*…
Biba
  • 631
  • 9
  • 28
0
votes
1 answer

Python pypi upload with twine retruns error: ItemNotFoundException: Item does not exist

I could not find any relevant content here or elsewhere about this issue. I am basically trying to upload a new version of my package to PyPi, and I get this strange error: python setup.py sdist bdist_wheel # this works fine twine upload dist/* #…
bruno.braga
  • 1,001
  • 12
  • 21
0
votes
1 answer

Installing twine fails because cannot uninstall 'pkginfo'

I need guidance on what I should do in this situation: C:\Users\Dave\Desktop\2016Coding\testdist>pip install twine Collecting twine Using cached…
Dave
  • 424
  • 3
  • 14
0
votes
1 answer

pip and setup.py install don't install actual modules, only egg-info

I've made two packages (pphp and xmlx) and distributed and uploaded them the standard way, using python setup.py sdist bdist_wheel and twine upload dist/*. I then tried installing them using pip install, and it seemed to work fine... but then, in…
AbyxDev
  • 1,363
  • 16
  • 30
1 2 3
9
10