Home - microsoft/BlingFire GitHub Wiki

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

⚠️ **GitHub.com Fallback** ⚠️