Skip to content

Commit 5792cee

Browse files
authored
Merge pull request #510 from KhiopsML/prepare-release-11-0-0-0
Prepare release 11 0 0 0
2 parents 294374b + e326b79 commit 5792cee

File tree

9 files changed

+29
-26
lines changed

9 files changed

+29
-26
lines changed

.github/workflows/api-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
name: API Docs
33
env:
4-
DEFAULT_KHIOPS_PYTHON_TUTORIAL_REVISION: 11.0.0.0-b.0
4+
DEFAULT_KHIOPS_PYTHON_TUTORIAL_REVISION: 11.0.0.0-rc.2
55
DEFAULT_KHIOPS_SAMPLES_REVISION: 11.0.0
66
on:
77
workflow_dispatch:
88
inputs:
99
khiops-python-tutorial-revision:
10-
default: 11.0.0.0-b.0
10+
default: 11.0.0.0-rc.2
1111
description: khiops-python-tutorial repo revision
1212
khiops-samples-revision:
1313
default: 11.0.0
1414
description: khiops-samples repo revision
1515
image-tag:
16-
default: 11.0.0-b.0.0
16+
default: 11.0.0-rc.2.0
1717
description: Development Docker Image Tag
1818
pull_request:
1919
paths:
@@ -45,7 +45,7 @@ jobs:
4545
# because the `env` context is only accessible at the step level;
4646
# hence, it is hard-coded
4747
image: |-
48-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-b.0.0' }}
48+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-rc.2.0' }}
4949
# Use the 'runner' user (1001) from github so checkout actions work properly
5050
# https://github.com/actions/runner/issues/2033#issuecomment-1598547465
5151
options: --user 1001

.github/workflows/conda.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Conda Package
33
env:
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: 11.0.0b.0
6+
DEFAULT_KHIOPS_CORE_VERSION: 11.0.0rc.2
77
DEFAULT_SAMPLES_VERSION: 11.0.0
88
on:
99
workflow_dispatch:
1010
inputs:
1111
khiops-core-version:
12-
default: 11.0.0b.0
12+
default: 11.0.0rc.2
1313
description: khiops-core version for testing
1414
khiops-samples-version:
1515
default: 11.0.0
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
fail-fast: false
6464
matrix:
65-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
65+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
6666
env:
6767
- {os: ubuntu-22.04, json-image: '{"image": "ubuntu:20.04"}'}
6868
- {os: ubuntu-22.04, json-image: '{"image": null}'}
@@ -100,7 +100,7 @@ jobs:
100100
else
101101
RC_LABEL=""
102102
fi
103-
conda install ${RC_LABEL}khiops-core=$KHIOPS_CORE_VERSION
103+
conda install "${RC_LABEL}"khiops-core==$KHIOPS_CORE_VERSION
104104
conda install --channel ./khiops-conda/ khiops
105105
- name: Install JQ test dependency (Linux / MacOS)
106106
if: runner.os != 'Windows'

.github/workflows/dev-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
name: Dev Docker
33
env:
4-
DEFAULT_KHIOPS_REVISION: 11.0.0-rc.1
4+
DEFAULT_KHIOPS_REVISION: 11.0.0-rc.2
55
DEFAULT_IMAGE_INCREMENT: 0
66
DEFAULT_SERVER_REVISION: main
7-
DEFAULT_PYTHON_VERSIONS: 3.8 3.9 3.10 3.11 3.12 3.13 3.14
7+
DEFAULT_PYTHON_VERSIONS: 3.10 3.11 3.12 3.13 3.14
88
DEFAULT_KHIOPS_GCS_DRIVER_REVISION: 0.0.14
99
DEFAULT_KHIOPS_S3_DRIVER_REVISION: 0.0.14
1010
on:
@@ -14,7 +14,7 @@ on:
1414
inputs:
1515
khiops-revision:
1616
type: string
17-
default: 11.0.0-rc.1
17+
default: 11.0.0-rc.2
1818
description: Khiops Revision
1919
image-increment:
2020
type: number
@@ -30,7 +30,7 @@ on:
3030
description: Set as 'latest'
3131
python-versions:
3232
type: string
33-
default: 3.8 3.9 3.10 3.11 3.12 3.13 3.14
33+
default: 3.10 3.11 3.12 3.13 3.14
3434
description: Python versions to support
3535
server-revision:
3636
type: string

.github/workflows/pip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
default: 11.0.0
1313
description: khiops-samples repo revision
1414
image-tag:
15-
default: 11.0.0-rc.1.0
15+
default: 11.0.0-rc.2.0
1616
description: Development Docker Image Tag
1717
pypi-target:
1818
type: choice
@@ -71,7 +71,7 @@ jobs:
7171
# because the `env` context is only accessible at the step level;
7272
# hence, it is hard-coded
7373
image: |-
74-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-rc.1.0' }}
74+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-rc.2.0' }}
7575
steps:
7676
- name: Set parameters as env
7777
run: |

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
name: Tests
33
env:
44
DEFAULT_SAMPLES_REVISION: 11.0.0
5-
DEFAULT_KHIOPS_DESKTOP_REVISION: 11.0.0-b.0
5+
DEFAULT_KHIOPS_DESKTOP_REVISION: 11.0.0-rc.2
66
on:
77
workflow_dispatch:
88
inputs:
99
samples-revision:
1010
default: 11.0.0
1111
description: Git Tag/Branch/Commit for the khiops-samples Repo
1212
image-tag:
13-
default: 11.0.0-rc.1.0
13+
default: 11.0.0-rc.2.0
1414
description: Development Docker Image Tag
1515
khiops-desktop-revision:
16-
default: 11.0.0-b.0
16+
default: 11.0.0-rc.2
1717
description: Khiops Windows Desktop Application Version
1818
run-expensive-tests:
1919
type: boolean
@@ -43,7 +43,7 @@ jobs:
4343
# because the `env` context is only accessible at the step level;
4444
# hence, it is hard-coded
4545
image: |-
46-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-rc.1.0' }}
46+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '11.0.0-rc.2.0' }}
4747
credentials:
4848
username: ${{ github.actor }}
4949
password: ${{ secrets.GITHUB_TOKEN }}
@@ -334,7 +334,7 @@ jobs:
334334
# because the `env` context is only accessible at the step level;
335335
# hence, it is hard-coded
336336
image: |-
337-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-rc.1.0' }}
337+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '11.0.0-rc.2.0' }}
338338
credentials:
339339
username: ${{ github.actor }}
340340
password: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Example: 10.2.1.4 is the 5th version that supports khiops 10.2.1.
77
- Internals: Changes in *Internals* sections are unlikely to be of interest for data scientists.
88

9-
## Unreleased -
9+
## 11.0.0.0-rc.2 - 2025-12-5
1010

1111
### Added
1212
- (General) Support for Python 3.14.
@@ -21,6 +21,9 @@
2121
- (`sklearn`) `Text` Khiops type support at the estimator level.
2222

2323
### Changed
24+
- (General) Pip packages are published on PyPI.
25+
- (General) Conda packages only depend on the `conda-forge` channel and are
26+
published on `conda-forge`.
2427
- (`core`) Dictionary API (DictionaryDomain, Dictionary, MetaData),
2528
when a requested key is not found in getters, return ``None`` instead
2629
of raising a `KeyError` exception.

doc/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ Khiops can be installed with `conda package manager <https://docs.conda.io/en/la
1414
conda activate khiops-env
1515
conda install -c conda-forge khiops
1616
17-
Alternatively, you can install in a virtual environment using `pip`,
18-
under Linux (in a `bash` shell) :
17+
Alternatively, you can install in a virtual environment using ``pip``,
18+
under Linux (in a ``bash`` shell) :
1919

2020
.. code-block:: bash
2121
2222
python -m venv khiops-venv
2323
source khiops-venv/bin/activate
2424
pip install -U khiops
2525
26-
under Windows (in a `powershell` shell) :
26+
under Windows (in a ``powershell`` shell) :
2727

2828
.. code-block:: powershell
2929

khiops/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
from khiops.core.internals.version import KhiopsVersion
2626

27-
__version__ = "11.0.0.0b.0"
27+
__version__ = "11.0.0.0rc.2"
2828

2929

3030
def get_compatible_khiops_version():

packaging/conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package:
33
name: {{ name }}
44
# The Conda version cannot contain the '-' character, so we eliminate it
5-
version: "11.0.0.0b.0"
5+
version: "11.0.0.0rc.2"
66

77
source:
88
path: ../../
@@ -23,7 +23,7 @@ requirements:
2323
- setuptools
2424
run:
2525
- python
26-
- khiops-core =11.0.0b.0
26+
- conda-forge/label/rc::khiops-core =11.0.0rc.2
2727
- pandas >=0.25.3
2828
- scikit-learn >=0.22.2
2929
run_constrained:

0 commit comments

Comments
 (0)