Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Loading