Skip to content

Commit

Permalink
Merge pull request #1456 from microsoft/staging
Browse files Browse the repository at this point in the history
Staging to main: prepare for release
  • Loading branch information
miguelgfierro committed Jun 17, 2021
2 parents f52c11f + dd27e1b commit efaa3d7
Show file tree
Hide file tree
Showing 10 changed files with 283 additions and 45 deletions.
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# What's New

## Update June 21, 2021

We have a new release [Recommenders 0.6.0](https://github.com/microsoft/recommenders/releases/tag/0.6.0)!

Recommenders is now on PyPI and can be installed using pip! In addition there are lots of bug fixes and utilities improvements.

Here you can find the PyPi page: https://pypi.org/project/ms-recommenders/

Here you can find the package documentation: https://microsoft-recommenders.readthedocs.io/en/latest/

## Update June 1, 2021

We have surpassed 10k stars!
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

[![Documentation Status](https://readthedocs.org/projects/microsoft-recommenders/badge/?version=latest)](https://microsoft-recommenders.readthedocs.io/en/latest/?badge=latest)

## What's New (June 1, 2021)
## What's New (June 21, 2021)

We have surpassed 10k stars!
We have a new release [Recommenders 0.6.0](https://github.com/microsoft/recommenders/releases/tag/0.6.0)!

Microsoft Recommenders repository has reached 10k stars and has become the most starred open-source recommender system project on GitHub.
Recommenders is now on PyPI and can be installed using pip! In addition there are lots of bug fixes and utilities improvements.

Many thanks and congratulations to all the contributors to this repository! More advanced algorithms and best practices are yet to come!
Here you can find the PyPi page: https://pypi.org/project/ms-recommenders/

See past announcements in [NEWS.md](NEWS.md).
Here you can find the package documentation: https://microsoft-recommenders.readthedocs.io/en/latest/

## Introduction

Expand All @@ -34,7 +34,7 @@ The installation of the recommenders package has been tested with Python version

To set up on your local machine:

To install core utilities, CPU-based algorithms, and dependencies
To install core utilities, CPU-based algorithms, and dependencies:

1. Ensure software required for compilation is installed. On Linux this can be supported by adding build-essential dependencies:
```bash
Expand Down Expand Up @@ -144,7 +144,7 @@ These tests are the nightly builds, which compute the smoke and integration test

### DSVM Build Status

The following tests run on a Windows and Linux DSVM daily. These machines run 24/7.
The following tests run on a Linux DSVM daily. These machines run 24/7.

| Build Type | Branch | Status | | Branch | Status |
| --- | --- | --- | --- | --- | --- |
Expand Down
2 changes: 1 addition & 1 deletion SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*`
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
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")

This comment has been minimized.

Copy link
@loomlike

loomlike Jul 26, 2021

Collaborator

I thought this is recommenders now.


install_requires = [
"numpy>=1.14",
Expand Down
50 changes: 44 additions & 6 deletions tests/ci/azure_pipeline_test/dsvm_notebook_linux_cpu.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Pull request against these branches will trigger this build
# Pull request against these branches will trigger this build, excluding some files
pr:
- main
- staging
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

# Any commit to this branch will trigger the build.
# Any commit to this branch will trigger the build, excluding some files
trigger:
- staging
- main
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

variables:
- group: LinuxAgentPool
Expand Down
50 changes: 44 additions & 6 deletions tests/ci/azure_pipeline_test/dsvm_notebook_linux_gpu.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Pull request against these branches will trigger this build
# Pull request against these branches will trigger this build, excluding some files
pr:
- main
- staging
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

# Any commit to this branch will trigger the build.
# Any commit to this branch will trigger the build, excluding some files
trigger:
- staging
- main
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

variables:
- group: LinuxAgentPool
Expand Down
50 changes: 44 additions & 6 deletions tests/ci/azure_pipeline_test/dsvm_notebook_linux_pyspark.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Pull request against these branches will trigger this build
# Pull request against these branches will trigger this build, excluding some files
pr:
- main
- staging
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

# Any commit to this branch will trigger the build.
# Any commit to this branch will trigger the build, excluding some files
trigger:
- staging
- main
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

variables:
- group: LinuxAgentPool
Expand Down
50 changes: 44 additions & 6 deletions tests/ci/azure_pipeline_test/dsvm_unit_linux_cpu.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Pull request against these branches will trigger this build
# Pull request against these branches will trigger this build, excluding some files
pr:
- main
- staging
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

# Any commit to this branch will trigger the build.
# Any commit to this branch will trigger the build, excluding some files
trigger:
- staging
- main
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

variables:
- group: LinuxAgentPool
Expand Down
50 changes: 44 additions & 6 deletions tests/ci/azure_pipeline_test/dsvm_unit_linux_gpu.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,53 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Pull request against these branches will trigger this build
# Pull request against these branches will trigger this build, excluding some files
pr:
- main
- staging
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

# Any commit to this branch will trigger the build.
# Any commit to this branch will trigger the build, excluding some files
trigger:
- staging
- main
branches:
include:
- main
- staging
paths:
exclude:
- contrib/*
- scenarios/*
- tools/*
- README.md
- AUTHORS.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- GLOSSARY.md
- NEWS.md
- SECURITY.md
- SETUP.md
- .gitignore
- examples/README.md
- reco_utils/README.md
- tests/README.md

variables:
- group: LinuxAgentPool
Expand Down

0 comments on commit efaa3d7

Please sign in to comment.