Skip to content

Commit ba82ab7

Browse files
Merge branch 'main' into collect_core_dump_in_ci
2 parents 70d4d6b + ce83522 commit ba82ab7

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,6 @@ docs/cuopt/build
7171
cpp/include/cuopt/semantic_version.hpp
7272
!datasets/quadratic_programming
7373
!datasets/quadratic_programming/**
74+
75+
# conda env (recommended name)
76+
.cuopt_env

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ Please install conda if you don't have it already. You can install [miniforge](h
136136
# create the conda environment (assuming in base `cuopt` directory)
137137
# note: cuOpt currently doesn't support `channel_priority: strict`;
138138
# use `channel_priority: flexible` instead
139-
conda env create --name cuopt_dev --file conda/environments/all_cuda-131_arch-$(uname -m).yaml
139+
conda env create -p ./.cuopt_env --file conda/environments/all_cuda-131_arch-$(uname -m).yaml
140140
# activate the environment
141-
conda activate cuopt_dev
141+
conda activate ./.cuopt_env
142142
```
143143

144144
- **Note**: the conda environment files are updated frequently, so the

ci/validate_wheel.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ PYDISTCHECK_ARGS=(
2222
if [[ "${package_dir}" == "python/libcuopt" ]]; then
2323
if [[ "${RAPIDS_CUDA_MAJOR}" == "12" ]]; then
2424
PYDISTCHECK_ARGS+=(
25-
--max-allowed-size-compressed '650Mi'
25+
--max-allowed-size-compressed '665Mi'
2626
)
2727
else
2828
PYDISTCHECK_ARGS+=(
29-
--max-allowed-size-compressed '495Mi'
29+
--max-allowed-size-compressed '505Mi'
3030
)
3131
fi
3232
elif [[ "${package_dir}" != "python/cuopt" ]] && \

0 commit comments

Comments
 (0)