martin-g commented on PR #766:
URL: https://github.com/apache/avro/pull/766#issuecomment-1968552314

   I think I see the problem!
   
   
https://cwiki.apache.org/confluence/display/AVRO/How+To+Release#HowToRelease-Publishing
 says this for Python:
   
   ```
   Publish Python artifacts to PyPI. To do this you'll need an [account on 
PyPi](https://docs.python.org/2/distutils/packageindex.html), and write access 
to the [Avro package](https://pypi.python.org/pypi/avro) - ask the existing 
owners for permission if you don't have it. 
   
   # To install twine in the docker image
   export PATH=~/.local/bin/:$PATH
   python3 -m pip install --user --upgrade twine pip
   
   mkdir -p tmp/py
   cd tmp/py
   tar xvfz ../../dist/py/avro-X.Y.X.tar.gz
   cd avro-X.Y.Z
   python setup.py sdist
   twine upload dist/*
   ```
   
   It needs `python setup.py sdist_wheel` too.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to