diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml deleted file mode 100644 index 8b65da69..00000000 --- a/.github/workflows/stale.yaml +++ /dev/null @@ -1,57 +0,0 @@ -name: Mark inactive issues and pull requests - -on: - schedule: - - cron: "0 * * * *" - -jobs: - mark-inactive-30d: - runs-on: ubuntu-latest - steps: - - name: Mark 30 day inactive issues and pull requests - uses: actions/stale@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: > - This issue has been labeled `inactive-30d` due to no recent activity in the past 30 days. - Please close this issue if no further response or action is needed. - Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. - This issue will be labeled `inactive-90d` if there is no activity in the next 60 days. - stale-issue-label: "inactive-30d" - exempt-issue-labels: "0 - Blocked,0 - Backlog,good first issue" - days-before-issue-stale: 30 - days-before-issue-close: -1 - stale-pr-message: > - This PR has been labeled `inactive-30d` due to no recent activity in the past 30 days. - Please close this PR if it is no longer required. - Otherwise, please respond with a comment indicating any updates. - This PR will be labeled `inactive-90d` if there is no activity in the next 60 days. - stale-pr-label: "inactive-30d" - exempt-pr-labels: "0 - Blocked,0 - Backlog,good first issue" - days-before-pr-stale: 30 - days-before-pr-close: -1 - operations-per-run: 50 - mark-inactive-90d: - runs-on: ubuntu-latest - steps: - - name: Mark 90 day inactive issues and pull requests - uses: actions/stale@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: > - This issue has been labeled `inactive-90d` due to no recent activity in the past 90 days. - Please close this issue if no further response or action is needed. - Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. - stale-issue-label: "inactive-90d" - exempt-issue-labels: "0 - Blocked,0 - Backlog,good first issue" - days-before-issue-stale: 90 - days-before-issue-close: -1 - stale-pr-message: > - This PR has been labeled `inactive-90d` due to no recent activity in the past 90 days. - Please close this PR if it is no longer required. - Otherwise, please respond with a comment indicating any updates. - stale-pr-label: "inactive-90d" - exempt-pr-labels: "0 - Blocked,0 - Backlog,good first issue" - days-before-pr-stale: 90 - days-before-pr-close: -1 - operations-per-run: 50 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f5b2001..766e9fd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ +# clx 22.12.00 (8 Dec 2022) + +## 🛠️ Improvements + +- Remove stale labeler ([#514](https://github.com/rapidsai/clx/pull/514)) [@raydouglass](https://github.com/raydouglass) + # clx 22.10.00 (12 Oct 2022) + # clx 22.08.00 (17 Aug 2022) ## 🐛 Bug Fixes diff --git a/conda/environments/clx_dev_cuda11.5.yml b/conda/environments/clx_dev_cuda11.5.yml index f68e74df..c9242f46 100644 --- a/conda/environments/clx_dev_cuda11.5.yml +++ b/conda/environments/clx_dev_cuda11.5.yml @@ -6,9 +6,9 @@ channels: dependencies: - cudatoolkit=11.5 - python>=3.6,<3.9 -- cugraph=22.10.* -- cuml=22.10.* -- cuxfilter=22.10.* +- cugraph=22.12.* +- cuml=22.12.* +- cuxfilter=22.12.* - scikit-learn=0.23.1 - s3fs - ipywidgets diff --git a/docs/source/conf.py b/docs/source/conf.py index f0f08a7b..babaad7f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,9 +24,9 @@ author = 'NVIDIA' # The short X.Y version -version = '22.10' +version = '22.12' # The full version, including alpha/beta/rc tags -release = '22.10.00' +release = '22.12.00' # -- General configuration ---------------------------------------------------