From 85c7cddb66dd0653b81c233bf712b3aa566786f7 Mon Sep 17 00:00:00 2001 From: Raymond Douglass Date: Fri, 23 Sep 2022 11:38:28 -0400 Subject: [PATCH 1/3] DOC --- CHANGELOG.md | 4 ++++ conda/environments/clx_dev_cuda11.5.yml | 6 +++--- docs/source/conf.py | 4 ++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bfd9d8c..98255952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# clx 22.12.00 (Date TBD) + +Please see https://github.com/rapidsai/clx/releases/tag/v22.12.00a for the latest changes to this development branch. + # clx 22.10.00 (Date TBD) Please see https://github.com/rapidsai/clx/releases/tag/v22.10.00a for the latest changes to this development branch. 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 --------------------------------------------------- From 10ffcc32efb0befbd5f3a04bd54323ef306054b4 Mon Sep 17 00:00:00 2001 From: Ray Douglass <3107146+raydouglass@users.noreply.github.com> Date: Tue, 25 Oct 2022 15:07:47 -0400 Subject: [PATCH 2/3] Remove stale labeler (#514) This PR removes the stale issue labeler workflow Authors: - Ray Douglass (https://github.com/raydouglass) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: https://github.com/rapidsai/clx/pull/514 --- .github/workflows/stale.yaml | 57 ------------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/stale.yaml 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 From 090b1fd11cef903c005e6fa063ccbae84fdf2324 Mon Sep 17 00:00:00 2001 From: Raymond Douglass Date: Thu, 8 Dec 2022 09:46:30 -0500 Subject: [PATCH 3/3] update changelog --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa11e959..68fd3ed9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -# clx 22.12.00 (Date TBD) +# clx 22.12.00 (8 Dec 2022) -Please see https://github.com/rapidsai/clx/releases/tag/v22.12.00a for the latest changes to this development branch. +## 🛠️ Improvements + +- Remove stale labeler ([#514](https://github.com/rapidsai/clx/pull/514)) [@raydouglass](https://github.com/raydouglass) # clx 22.10.00 (12 Oct 2022)