Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support RMM 22.12 with Python 3.8 #318

Merged
merged 5 commits into from
Apr 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
.
  • Loading branch information
cwharris committed Apr 13, 2023
commit 284de9c726e8b820e45d7f2c8a57ea25a157adcf
4 changes: 3 additions & 1 deletion ci/conda/recipes/libmrc/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ cuda_compiler_version:
- 11.8

python:
- 3.8
- 3.10

# Setup the dependencies to build with multiple versions of RAPIDS
rapids_version: # Keep around compatibility with current version -1
- 22.10
- 22.12
- 23.02

# Multiple versions of abseil are required to satisfy the solver for some
Expand All @@ -54,6 +55,7 @@ libprotobuf:
- 3.21

zip_keys:
- python
- rapids_version
- libabseil
- grpc_cpp
Expand Down
2 changes: 1 addition & 1 deletion python/mrc/_pymrc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# the License.
# =============================================================================

find_package(Python 3.10 REQUIRED COMPONENTS Development Interpreter)
find_package(Python 3.8 REQUIRED COMPONENTS Development Interpreter)
find_package(pybind11 REQUIRED)
find_package(prometheus-cpp REQUIRED)

Expand Down