diff --git a/.github/workflows/test_freecad.yml b/.github/workflows/test_freecad.yml index cdb0035..6f97e4a 100644 --- a/.github/workflows/test_freecad.yml +++ b/.github/workflows/test_freecad.yml @@ -11,12 +11,13 @@ jobs: - name: Install and Test run: | - conda create -y -n freecad -c conda-forge python=3.11 freecad=0.21.2 + conda create -y -n freecad -c conda-forge python=3.11 freecad=0.21.2 cadquery conda init bash source /usr/share/miniconda/bin/activate conda activate freecad python -m pip install --upgrade pip - unset CONDA_PREFIX_1 - pip install -e . + pip install -e . --no-deps + pip install cadquery_freecad_import_plugin pip install -e .[dev] + pip install pytest-xvfb python -m pytest -v tests/test_freecad.py \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c61905d..a4a499c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "cq_cli" +name = "cadquery-cli" version = "2.3.0" license = {file = "LICENSE"} authors = [ @@ -17,7 +17,7 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "cadquery@git+https://github.com/CadQuery/cadquery.git", + "cadquery", "cadquery_freecad_import_plugin" ]