@@ -3,13 +3,13 @@ name: Conda Package
33env :
44 # Note: The default Khiops version must never be an alpha release as they are
55 # ephemeral. To test alpha versions run the workflow manually.
6- DEFAULT_KHIOPS_CORE_VERSION : 10.2.4
6+ DEFAULT_KHIOPS_CORE_VERSION : 10.3.0
77 DEFAULT_SAMPLES_VERSION : 10.2.4
88on :
99 workflow_dispatch :
1010 inputs :
1111 khiops-core-version :
12- default : 10.2.4
12+ default : 10.3.0
1313 description : khiops-core version for testing
1414 khiops-samples-version :
1515 default : 10.2.4
5151 - name : Install Miniforge
5252 uses : conda-incubator/setup-miniconda@v3
5353 with :
54- miniforge-version : latest
54+ miniforge-version : 24.11.0-0
5555 python-version : ' 3.12'
5656 conda-remove-defaults : true
5757 - name : Install Dependency Requirements for Building Conda Packages
9090 - name : Install Miniforge
9191 uses : conda-incubator/setup-miniconda@v3
9292 with :
93- miniforge-version : latest # needed for macOS 13
93+ miniforge-version : 24.11.0-0
9494 python-version : ${{ matrix.python-version }}
9595 conda-remove-defaults : true
9696 - name : Download Conda Package Artifact
@@ -185,7 +185,7 @@ jobs:
185185 - name : Install Miniforge
186186 uses : conda-incubator/setup-miniconda@v3
187187 with :
188- miniforge-version : latest
188+ miniforge-version : 24.11.0-0
189189 python-version : ' 3.12'
190190 conda-remove-defaults : true
191191 - name : Install Requirement Packages
@@ -201,9 +201,9 @@ jobs:
201201 if [[ "$ANACONDA_CHANNEL" == "khiops" ]]
202202 then
203203 anaconda --token "${{ secrets.KHIOPS_ANACONDA_CHANNEL_TOKEN }}" upload \
204- --user "$ANACONDA_CHANNEL" ./khiops-conda/noarch/*.tar.bz2
204+ --user "$ANACONDA_CHANNEL" ./khiops-conda/noarch/*.conda
205205 # For the dev channel: upload with forcing
206206 else
207207 anaconda --token "${{ secrets.KHIOPS_DEV_ANACONDA_CHANNEL_TOKEN }}" upload \
208- --user "$ANACONDA_CHANNEL" --force ./khiops-conda/noarch/*.tar.bz2
208+ --user "$ANACONDA_CHANNEL" --force ./khiops-conda/noarch/*.conda
209209 fi
0 commit comments