Skip to content

Commit

Permalink
Merge pull request #692 from rapidsai/branch-24.02
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Feb 12, 2024
2 parents a3445df + 207ea61 commit 2c5bb60
Show file tree
Hide file tree
Showing 139 changed files with 602 additions and 5,140 deletions.
6 changes: 0 additions & 6 deletions .dockerignore

This file was deleted.

9 changes: 3 additions & 6 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ python/ @rapidsai/cucim-python-codeowners
**/cmake/ @rapidsai/cucim-cmake-codeowners

#build/ops code owners
.github/ @rapidsai/ops-codeowners
ci/ @rapidsai/ops-codeowners
conda/ @rapidsai/ops-codeowners
**/Dockerfile @rapidsai/ops-codeowners
**/.dockerignore @rapidsai/ops-codeowners
docker/ @rapidsai/ops-codeowners
/.github/ @rapidsai/ops-codeowners
/ci/ @rapidsai/ops-codeowners
/conda/ @rapidsai/ops-codeowners
dependencies.yaml @rapidsai/ops-codeowners
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ concurrency:
jobs:
cpp-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.02
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -38,7 +38,7 @@ jobs:
if: github.ref_type == 'branch'
needs: [python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.02
with:
arch: "amd64"
branch: ${{ inputs.branch }}
Expand All @@ -51,7 +51,7 @@ jobs:
python-build:
needs: [cpp-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.02
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -60,15 +60,15 @@ jobs:
upload-conda:
needs: [cpp-build, python-build]
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.02
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
wheel-build:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.02
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand All @@ -78,7 +78,7 @@ jobs:
wheel-publish:
needs: wheel-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.02
with:
build_type: ${{ inputs.build_type || 'branch' }}
branch: ${{ inputs.branch }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,32 +20,32 @@ jobs:
- wheel-build
- wheel-tests
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.02
checks:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.02
conda-cpp-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.02
with:
build_type: pull-request
conda-python-build:
needs: conda-cpp-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.02
with:
build_type: pull-request
conda-python-tests:
needs: conda-python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.02
with:
build_type: pull-request
docs-build:
needs: conda-python-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.02
with:
build_type: pull-request
node_type: "gpu-v100-latest-1"
Expand All @@ -55,14 +55,14 @@ jobs:
wheel-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.02
with:
build_type: pull-request
script: ci/build_wheel.sh
wheel-tests:
needs: wheel-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.02
with:
build_type: pull-request
script: ci/test_wheel.sh
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ on:
jobs:
conda-python-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.02
with:
build_type: nightly
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
wheel-tests:
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-23.12
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.02
with:
build_type: nightly
branch: ${{ inputs.branch }}
Expand Down
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

2 changes: 0 additions & 2 deletions .idea/cucim.iml

This file was deleted.

14 changes: 0 additions & 14 deletions .idea/fileTemplates/includes/NVIDIA_CMAKE_HEADER.cmake

This file was deleted.

15 changes: 0 additions & 15 deletions .idea/fileTemplates/includes/NVIDIA_C_HEADER.h

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/fileTemplates/internal/C Header File.h

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/fileTemplates/internal/C Source File.c

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/fileTemplates/internal/C++ Class Header.h

This file was deleted.

2 changes: 0 additions & 2 deletions .idea/fileTemplates/internal/C++ Class.cc

This file was deleted.

1 change: 0 additions & 1 deletion .idea/fileTemplates/internal/CMakeLists.txt.cmake

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/misc.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# cuCIM 24.02.00 (12 Feb 2024)

## 🐛 Bug Fixes

- Fix CUDA trove classifiers & update README install instructions ([#695](https://github.com/rapidsai/cucim/pull/695)) [@jakirkham](https://github.com/jakirkham)
- Exclude PyTest 8 ([#689](https://github.com/rapidsai/cucim/pull/689)) [@jakirkham](https://github.com/jakirkham)
- Update OpenJPEG to 2.5.0 ([#685](https://github.com/rapidsai/cucim/pull/685)) [@jakirkham](https://github.com/jakirkham)
- Fix CI (pt. 2) ([#680](https://github.com/rapidsai/cucim/pull/680)) [@jakirkham](https://github.com/jakirkham)
- Fix CI issues ([#676](https://github.com/rapidsai/cucim/pull/676)) [@jakirkham](https://github.com/jakirkham)
- Remove update to symlink ([#674](https://github.com/rapidsai/cucim/pull/674)) [@raydouglass](https://github.com/raydouglass)
- Add 3rd party license file in Conda packages ([#654](https://github.com/rapidsai/cucim/pull/654)) [@jakirkham](https://github.com/jakirkham)
- Fix style issue in `docs/source/conf.py` ([#648](https://github.com/rapidsai/cucim/pull/648)) [@jakirkham](https://github.com/jakirkham)

## 🛠️ Improvements

- Consolidate test requirements in `dependencies.yaml` ([#683](https://github.com/rapidsai/cucim/pull/683)) [@jakirkham](https://github.com/jakirkham)
- Remove usages of rapids-env-update ([#673](https://github.com/rapidsai/cucim/pull/673)) [@KyleFromNVIDIA](https://github.com/KyleFromNVIDIA)
- refactor CUDA versions in dependencies.yaml ([#671](https://github.com/rapidsai/cucim/pull/671)) [@jameslamb](https://github.com/jameslamb)
- minor updates/fixes for consistency with scikit-image 0.22 ([#670](https://github.com/rapidsai/cucim/pull/670)) [@grlee77](https://github.com/grlee77)
- Update CODEOWNERS ([#669](https://github.com/rapidsai/cucim/pull/669)) [@ajschmidt8](https://github.com/ajschmidt8)
- remove redundant notebook ([#668](https://github.com/rapidsai/cucim/pull/668)) [@grlee77](https://github.com/grlee77)
- remove .idea folder (CLion IDE configuration) ([#667](https://github.com/rapidsai/cucim/pull/667)) [@grlee77](https://github.com/grlee77)
- Cleanup old ci and docs subfolders and related files under python/cucim ([#666](https://github.com/rapidsai/cucim/pull/666)) [@grlee77](https://github.com/grlee77)
- remove various files related to old wheel building mechanism ([#665](https://github.com/rapidsai/cucim/pull/665)) [@grlee77](https://github.com/grlee77)
- Relax `openslide` pin ([#653](https://github.com/rapidsai/cucim/pull/653)) [@jakirkham](https://github.com/jakirkham)
- install imagecodecs and openslide-python dependencies so additional tests will run ([#634](https://github.com/rapidsai/cucim/pull/634)) [@grlee77](https://github.com/grlee77)

# cuCIM 23.12.00 (6 Dec 2023)

## 🐛 Bug Fixes
Expand Down
Loading

0 comments on commit 2c5bb60

Please sign in to comment.