Closed tpaviot closed 1 month ago
This pull request addresses issues with the Azure build pipeline, specifically focusing on conda build for macOS and updating the Ubuntu image. It also removes a potentially problematic test import.
graph TD;
A[Azure Pipeline] -->|Uses| B[conda-build.yml];
B -->|Updated| C[Ubuntu 22.04];
B -->|Added| D[macOS Miniconda Installation];
B -->|Added| E[Ubuntu 24.04];
C --> F[Python 3.9];
E --> G[Python 3.10];
D --> H[Python 3.10];
classDiagram
class MetaYaml {
-OCC
-OCC.Core.BRepPrimAPI
-OCC.Core.MeshDS
-OCC.Core.Tesselator
-pyqt >=5
}
note for MetaYaml "Removed OCC.Core.MeshDS import"
Change | Details | Files |
---|---|---|
Update conda build configuration for macOS |
|
conda-build.yml |
Update Ubuntu image and Python versions |
|
conda-build.yml azure-pipelines.yml |
Remove MeshDS test import |
|
ci/conda/meta.yaml |
Summary by Sourcery
Update the conda build configuration to use newer versions of Ubuntu and Python, add Miniconda installation steps for macOS, and fix a segmentation fault in the MeshDS test by removing the problematic import.
Bug Fixes:
Enhancements:
CI: