Skip to content

Commit

Permalink
Use pip install -e . in CircleCI setup
Browse files Browse the repository at this point in the history
Instead of `python setup.py develop`. We started getting failures
after merging ckan#8375 but that seems completely
unrelated. I suspect it must be some low level unpinned dependency
(setuptools?) as there are some errors in the `test-infrastructure/install_deps.sh` step.
Using `pip install .` seems a much more reliable way of setting up CKAN
in that env

https://app.circleci.com/pipelines/github/ckan/ckan/7100/workflows/d61a6ae4-e4d5-4d6a-b5b3-8553fefd2215/jobs/15115
  • Loading branch information
amercader committed Jul 26, 2024
1 parent e04fd6b commit 131c479
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test-infrastructure/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ apt update
apt install -y postgresql-client

#Python Dependencies
pip install -U pip
pip install -r requirements.txt
pip install -r dev-requirements.txt
python setup.py develop
pip install -e .
pip check

0 comments on commit 131c479

Please sign in to comment.