This commit is contained in:
miguelgfierro 2021-06-17 13:31:58 +00:00
Родитель ed18270b3a
Коммит 67012ddb54
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -351,4 +351,4 @@ First make sure that the tag that you want to add, e.g. `0.6.0`, is added in [re
generates a wheel and a tar.gz which are uploaded to a [GitHub draft release](https://github.com/microsoft/recommenders/releases).
1. Fill up the draft release with all the recent changes in the code.
1. Download the wheel and tar.gz locally, these files shouldn't have any bug, since they passed all the tests.
1. Publish the wheel and tar.gz to pypi: `twine upload ms-recommenders*`
1. Publish the wheel and tar.gz to pypi: `twine upload ms_recommenders*`

Просмотреть файл

@ -21,7 +21,7 @@ HASH = environ.get("HASH", None)
if HASH is not None:
version += ".post" + str(int(time.time()))
name = environ.get("LIBRARY_NAME", "ms-recommenders")
name = environ.get("LIBRARY_NAME", "ms_recommenders")
install_requires = [
"numpy>=1.14",