Почему GitHub продолжает продвигаться с другой версией, используемой в Pipfile? - PullRequest
0 голосов
/ 25 июня 2018

Всякий раз, когда я нажимаю на платформу, у меня возникает ошибка версии Python:

$ git push heroku master
Counting objects: 31708, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (23964/23964), done.
Writing objects: 100% (31708/31708), 293.38 MiB | 1.12 MiB/s, done.
Total 31708 (delta 7100), reused 31670 (delta 7076)
remote: Compressing source files... done.
remote: Building source:
remote: 
remote: -----> Python app detected
remote:  !     The latest version of Python 3 is python-3.6.5 (you are using python-3.5.2, which is unsupported).
remote:  !     We recommend upgrading by specifying the latest version (python-3.6.5).
remote:        Learn More: https://devcenter.heroku.com/articles/python-runtimes
remote: -----> Installing python-3.5.2

В то время как у меня есть следующее Pipfile:

[[source]]
url = "https://pypi.python.org/simple"

[packages]
requests = { extras = ['socks'] }

[requires]
python_full_version = "3.6.5"

, и я сделал pipenv lock

Вот моя версия Python:

mike@mike-thinks:~/Programing/Rasa/myflaskapp$ python3.6 -V
Python 3.6.5

Почему GitHub продолжает использовать другую версию, используемую в Pipfile?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...