Closed mrandri19 closed 2 years ago
The current documentation on how to setup a development environment is outdated, see https://mindsdb.github.io/type_infer/#setting-up-a-dev-environment. pip install requirements.txt does not work anymore after switching to a poetry + pyproject.toml workflow.
pip install requirements.txt
poetry
pyproject.toml
The CI works because it has been updated to use pip install -e ., see https://github.com/mindsdb/type_infer/blob/staging/.github/workflows/python-package.yml#L29.
pip install -e .
This PR updates the documentation to match what is done in CI.
Would it be possible to get an hacktoberfest-accepted label on this PR? It's related to #11 in some sense
hacktoberfest-accepted
The current documentation on how to setup a development environment is outdated, see https://mindsdb.github.io/type_infer/#setting-up-a-dev-environment.
pip install requirements.txt
does not work anymore after switching to apoetry
+pyproject.toml
workflow.The CI works because it has been updated to use
pip install -e .
, see https://github.com/mindsdb/type_infer/blob/staging/.github/workflows/python-package.yml#L29.This PR updates the documentation to match what is done in CI.