poliastro / validation

Validation of poliastro against external software.
Apache License 2.0
11 stars 6 forks source link

Impose poliastro latest version as dep #21

Closed jorgepiloto closed 3 years ago

jorgepiloto commented 3 years ago

This should fix #19.

jorgepiloto commented 3 years ago

Alright, so this is now installing poliastro.0.15.dev0 in the actual validation environment. However, I achieved this by using:

git+https://github.com/poliastro/poliastro.git

This procedure is discouraged by pip official docs, see https://pip.pypa.io/en/stable/reference/pip_install/#git. They suggest to directly clone the repository and install from then on. What do you think about this, @astrojuanlu?

astrojuanlu commented 3 years ago

This is what I read:

Note that the use of git, git+git, and git+http is discouraged. The former two use the Git Protocol, which lacks authentication, and HTTP is insecure due to lack of TLS based encryption.

Therefore, git+https and git+ssh are encouraged, right?