tkurki / marinepi-provisioning

Ansible provisioning scripts to set up a Raspberry Pi for marine use
Apache License 2.0
45 stars 21 forks source link

easy_install deprecated #70

Closed bhavers closed 3 years ago

bhavers commented 5 years ago

easy_install is deprecated, and therefor installing pysk will not work. I think roles/pysk/task/main.yml should be changed. Something like this?

- pip:
    name: pysk
    version: latest
  become: true
#- name: 'Install pysk'
#  easy_install:
#    name: pysk
#    state: latest
#  become: true

also opened an issue in the pysk project: https://github.com/ph1l/pysk/issues/5

bhavers commented 3 years ago

PR submitted. Think this can be closed.