diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 148a9f0..c662699 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,15 +11,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - run: | - sudo apt-get update -y && sudo apt-get install wget -y - source /etc/os-release - ARCH=$(dpkg --print-architecture) - TEMP_DEB="$(mktemp)" - wget -O "$TEMP_DEB" "https://github.com/KhiopsML/khiops/releases/download/11.0.0/khiops-core-openmpi_11.0.0-1-${VERSION_CODENAME}.${ARCH}.deb" - if ! sudo dpkg -i "$TEMP_DEB"; then - sudo apt-get -f -y install - fi - rm -f "$TEMP_DEB" - uses: astral-sh/setup-uv@v5 - run: uv run pytest -n auto tests \ No newline at end of file diff --git a/README.md b/README.md index 15ad3b0..7ec5710 100644 --- a/README.md +++ b/README.md @@ -116,11 +116,6 @@ plt.show() ## Development -Create a local conda environement with khiops (skip this if you can install khiops-python with pip, but requires a global khiops-core install): -- ```conda create -p .venv python=3.12``` -- ```conda activate .venv``` -- ```conda install -c conda-forge -c khiops-dev khiops=11.0.0.3``` - Formatting and linting is done with ruff as a [pre-commit](https://pre-commit.com/): - install: ```pre-commit install```, - format and lint: ```pre-commit run --all-files``` (automatically done before a commit). diff --git a/pyproject.toml b/pyproject.toml index 5a9477d..76b85e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ authors = [ { name="Pierre Nodet", email="pierre.nodet@orange.com" }, ] dependencies = [ - "khiops>=11.0.0.3", + "khiops>=11.0.1.0", ] [tool.hatch.build.targets.wheel]