Fix PyPI: replace the direct extra dependency quapy[composable] with documentation on how to install through git

This commit is contained in:
Mirko Bunse 2024-09-17 10:19:26 +02:00
parent 3895cba610
commit 9be729386a
4 changed files with 12 additions and 4 deletions

View File

@ -28,7 +28,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade pip setuptools wheel
python -m pip install -e .[bayes,composable,tests] python -m pip install "qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.4"
python -m pip install -e .[bayes,tests]
- name: Test with unittest - name: Test with unittest
run: python -m unittest run: python -m unittest
@ -46,7 +47,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip setuptools wheel "jax[cpu]" python -m pip install --upgrade pip setuptools wheel "jax[cpu]"
python -m pip install -e .[composable,neural,docs] python -m pip install "qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.4"
python -m pip install -e .[neural,docs]
- name: Build documentation - name: Build documentation
run: sphinx-build -M html docs/source docs/build run: sphinx-build -M html docs/source docs/build
- name: Publish documentation - name: Publish documentation

View File

@ -447,7 +447,7 @@ The [](quapy.method.composable) module allows the composition of quantification
```sh ```sh
pip install --upgrade pip setuptools wheel pip install --upgrade pip setuptools wheel
pip install "jax[cpu]" pip install "jax[cpu]"
pip install quapy[composable] pip install "qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.4"
``` ```
### Basics ### Basics

View File

@ -2,6 +2,13 @@
This example illustrates the composition of quantification methods from This example illustrates the composition of quantification methods from
arbitrary loss functions and feature transformations. It will extend the basic arbitrary loss functions and feature transformations. It will extend the basic
example on the usage of quapy with this composition. example on the usage of quapy with this composition.
This example requires the installation of qunfold, the back-end of QuaPy's
composition module:
pip install --upgrade pip setuptools wheel
pip install "jax[cpu]"
pip install "qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.4"
""" """
import numpy as np import numpy as np

View File

@ -125,7 +125,6 @@ setup(
# projects. # projects.
extras_require={ # Optional extras_require={ # Optional
'bayes': ['jax', 'jaxlib', 'numpyro'], 'bayes': ['jax', 'jaxlib', 'numpyro'],
'composable': ['qunfold @ git+https://github.com/mirkobunse/qunfold@v0.1.4'],
'neural': ['torch'], 'neural': ['torch'],
'tests': ['certifi'], 'tests': ['certifi'],
'docs' : ['sphinx-rtd-theme', 'myst-parser'], 'docs' : ['sphinx-rtd-theme', 'myst-parser'],