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 055975f2..8d640207 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# cuXfilter 22.12.00 (8 Dec 2022) + +## 📖 Documentation + +- Create symlink to 10_minutes_to_cuxfilter.ipynb into the notebooks fo… ([#413](https://github.com/rapidsai/cuxfilter/pull/413)) [@taureandyernv](https://github.com/taureandyernv) + +## 🛠️ Improvements + +- Update `panel` version ([#421](https://github.com/rapidsai/cuxfilter/pull/421)) [@ajschmidt8](https://github.com/ajschmidt8) +- Remove stale labeler ([#410](https://github.com/rapidsai/cuxfilter/pull/410)) [@raydouglass](https://github.com/raydouglass) + # cuXfilter 22.10.00 (12 Oct 2022) ## 🐛 Bug Fixes @@ -10,6 +21,7 @@ - Allow cupy 11 ([#401](https://github.com/rapidsai/cuxfilter/pull/401)) [@galipremsagar](https://github.com/galipremsagar) # cuXfilter 22.08.00 (17 Aug 2022) + ## 🐛 Bug Fixes - fix/incorrect-bokeh-legend-attributes ([#381](https://github.com/rapidsai/cuxfilter/pull/381)) [@AjayThorve](https://github.com/AjayThorve) diff --git a/README.md b/README.md index f564907a..6671ac09 100644 --- a/README.md +++ b/README.md @@ -156,12 +156,12 @@ Please see the [Demo Docker Repository](https://hub.docker.com/r/rapidsai/rapids cuxfilter can be installed with conda ([miniconda](https://conda.io/miniconda.html), or the full [Anaconda distribution](https://www.anaconda.com/download)) from the `rapidsai` channel: -For `cuxfilter version == 22.10` : +For `cuxfilter version == 22.12` : ```bash # for CUDA 11.5 conda install -c rapidsai -c nvidia -c numba -c conda-forge \ - cuxfilter=22.10 python=3.7 cudatoolkit=11.5 + cuxfilter=22.12 python=3.7 cudatoolkit=11.5 ``` diff --git a/conda/environments/cuxfilter_dev_cuda11.0.yml b/conda/environments/cuxfilter_dev_cuda11.0.yml index 3a04a54d..48117d5f 100644 --- a/conda/environments/cuxfilter_dev_cuda11.0.yml +++ b/conda/environments/cuxfilter_dev_cuda11.0.yml @@ -8,13 +8,13 @@ channels: - anaconda dependencies: - cupy>=9.5.0,<12.0.0a0 -- cuspatial=22.10 +- cuspatial=22.12 - python>=3.8,<3.10 -- cudf=22.10 +- cudf=22.12 - dask>=2.12.0 - distributed>=2.12.0 -- dask-cuda=22.10 -- dask-cudf=22.10 +- dask-cuda=22.12 +- dask-cudf=22.12 - datashader>0.13, <0.14 - holoviews>1.14.1, <=1.14.6 - numba>=0.54 @@ -23,7 +23,7 @@ dependencies: - libwebp - pandoc=<2.0.0 - bokeh>=2.4.2,<=2.5 -- panel>=0.12.7,<0.13 +- panel>=0.14.0,<0.15 - pyppeteer>=0.2.6 - cudatoolkit=11.0 - nodejs diff --git a/conda/environments/cuxfilter_dev_cuda11.2.yml b/conda/environments/cuxfilter_dev_cuda11.2.yml index 8eee1632..f745699b 100644 --- a/conda/environments/cuxfilter_dev_cuda11.2.yml +++ b/conda/environments/cuxfilter_dev_cuda11.2.yml @@ -8,13 +8,13 @@ channels: - anaconda dependencies: - cupy>=9.5.0,<12.0.0a0 -- cuspatial=22.10 +- cuspatial=22.12 - python>=3.8,<3.10 -- cudf=22.10 +- cudf=22.12 - dask>=2.12.0 - distributed>=2.12.0 -- dask-cuda=22.10 -- dask-cudf=22.10 +- dask-cuda=22.12 +- dask-cudf=22.12 - datashader>0.13, <0.14 - holoviews>1.14.1, <=1.14.6 - numba>=0.54 @@ -23,7 +23,7 @@ dependencies: - libwebp - pandoc=<2.0.0 - bokeh>=2.4.2,<=2.5 -- panel>=0.12.7,<0.13 +- panel>=0.14.0,<0.15 - pyppeteer>=0.2.6 - cudatoolkit=11.2 - nodejs diff --git a/conda/environments/cuxfilter_dev_cuda11.4.yml b/conda/environments/cuxfilter_dev_cuda11.4.yml index 2c414db2..49203f28 100644 --- a/conda/environments/cuxfilter_dev_cuda11.4.yml +++ b/conda/environments/cuxfilter_dev_cuda11.4.yml @@ -8,13 +8,13 @@ channels: - anaconda dependencies: - cupy>=9.5.0,<12.0.0a0 -- cuspatial=22.10 +- cuspatial=22.12 - python>=3.8,<3.10 -- cudf=22.10 +- cudf=22.12 - dask>=2.12.0 - distributed>=2.12.0 -- dask-cuda=22.10 -- dask-cudf=22.10 +- dask-cuda=22.12 +- dask-cudf=22.12 - datashader>0.13, <0.14 - holoviews>1.14.1, <=1.14.6 - numba>=0.54 @@ -23,7 +23,7 @@ dependencies: - libwebp - pandoc=<2.0.0 - bokeh>=2.4.2,<=2.5 -- panel>=0.12.7,<0.13 +- panel>=0.14.0,<0.15 - pyppeteer>=0.2.6 - cudatoolkit=11.4 - nodejs diff --git a/conda/environments/cuxfilter_dev_cuda11.5.yml b/conda/environments/cuxfilter_dev_cuda11.5.yml index 5cbf31bd..0f33040e 100644 --- a/conda/environments/cuxfilter_dev_cuda11.5.yml +++ b/conda/environments/cuxfilter_dev_cuda11.5.yml @@ -8,13 +8,13 @@ channels: - anaconda dependencies: - cupy>=9.5.0,<12.0.0a0 -- cuspatial=22.10 +- cuspatial=22.12 - python>=3.8,<3.10 -- cudf=22.10 +- cudf=22.12 - dask>=2.12.0 - distributed>=2.12.0 -- dask-cuda=22.10 -- dask-cudf=22.10 +- dask-cuda=22.12 +- dask-cudf=22.12 - datashader>0.13, <0.14 - holoviews>1.14.1, <=1.14.6 - numba>=0.54 @@ -23,7 +23,7 @@ dependencies: - libwebp - pandoc=<2.0.0 - bokeh>=2.4.2,<=2.5 -- panel>=0.12.7,<0.13 +- panel>=0.14.0,<0.15 - pyppeteer>=0.2.6 - cudatoolkit=11.5 - nodejs diff --git a/conda/recipes/cuxfilter/meta.yaml b/conda/recipes/cuxfilter/meta.yaml index decbd06d..56eb137f 100644 --- a/conda/recipes/cuxfilter/meta.yaml +++ b/conda/recipes/cuxfilter/meta.yaml @@ -35,7 +35,7 @@ requirements: - holoviews>1.14.1, <=1.14.6 - numba >=0.54 - cupy >=9.5.0,<12.0.0a0 - - panel >=0.12.7,<0.13 + - panel >=0.14.0,<0.15 - pyppeteer>=0.2.6 - bokeh>=2.4.2,<=2.5 - pyproj>=2.4,<=3.4 diff --git a/docs/source/conf.py b/docs/source/conf.py index 65c7e146..ff6dfb85 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,9 +27,9 @@ # built documents. # # 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' nbsphinx_allow_errors = True # -- General configuration --------------------------------------------------- diff --git a/notebooks/10_minutes_to_cuxfilter.ipynb b/notebooks/10_minutes_to_cuxfilter.ipynb new file mode 120000 index 00000000..2f02ae00 --- /dev/null +++ b/notebooks/10_minutes_to_cuxfilter.ipynb @@ -0,0 +1 @@ +../docs/source/user_guide/10_minutes_to_cuxfilter.ipynb \ No newline at end of file