Skip to content
Sergei Alonichau edited this page Mar 12, 2021 · 2 revisions

Welcome to the BlingFire wiki!

How to update a Python package

Go to BlingFire/dist-pypi directory and run:

python setup.py sdist bdist_wheel
twine upload --config .pypirc -r pypi dist/*

It expects to have a .pypirc file to contain repo, username and password:

[distutils]
index-servers =
    pypi

[pypi]
repository = https://upload.pypi.org/legacy/
username = <mylogin>
password = <myfirstpassword>

How to update a Nuget package

See here