I have the following pipfile:
[[source]]
name = "pypi"
url = "${PYPI_ENDPOINT}"
verify_ssl = true
[dev-packages]
flask-shell-ipython = "==0.4.*"
ipython = "==7.4.*"
[packages]
boto3 = "==1.9.*"
statsd = "==3.2.1"
gunicorn = ">=19.7.0,<20.0.0"
python-dotenv = "==0.8.2"
Flask = "==1.0.2"
pyflogger = "==0.1.*"
mongoengine = "==0.17.*"
sagemaker = "==1.18.*"
databricks-connect = "==5.2.*"
[requires]
python_version = "3.5.3"
Everything was ok, but once I changed databricks-connect
version to "==5.5.*"
I cannot built a project locally and in jenkins, because of the following error:
ERROR: Could not find a version that matches flask-shell-ipython==0.4.* (from -r /tmp/pipenv0ut3ryizrequirements/pipenv-igwd4wtq-constraints.txt (line 2))
I decided to not specify the concrete version of this lib and changed the pipfile to
[dev-packages]
flask-shell-ipython = "*"
but still have the exception:
ERROR: Could not find a version that matches flask-shell-ipython
That is my .yml file
command_list:
- name: Generate a template
command: ./etc/build_config_files.sh ./templates ~
- name: virtual env
command: /usr/local/bin/virtualenv -p /home/admin/.pyenv/versions/3.5.2/bin/python .jarvis
- name: run
command: . ./.jarvis/bin/activate && ./.jarvis/bin/pip install pipenv && ./.funnel_prediction_jarvis/bin/pipenv install && ./.jarvis/bin/pipenv run python -u script/fetch_kw_lp_mapping.py
- name: remove databricks connect config file
command: rm -f ~/.databricks-connect
What is the way to fix it?