Package Compatibility issues (Genie / Nettle)

Hi, I was using Genie (version 0.29.0) on Julia 1.2 without issues, but i had to use use it on another computer (also Julia 1.2) and i can’t add it anymore.

(v1.2) pkg> add Genie
 Resolving package versions...
ERROR: Unsatisfiable requirements detected for package Nettle [49dea1ee]:
 Nettle [49dea1ee] log:
 ├─possible versions are: [0.4.0, 0.5.0] or uninstalled
 ├─restricted by compatibility requirements with Genie [c43c736e] to versions: [0.4.0, 0.5.0]
 │ └─Genie [c43c736e] log:
 │   ├─possible versions are: [0.9.4-0.9.5, 0.9.7-0.9.9, 0.10.1, 0.11.0-0.11.1, 0.13.4, 0.14.0, 0.15.0, 0.16.0, 0.17.0, 0.18.0-0.18.1, 0.19.0-0.19.1, 0.20.0, 0.21.0, 0.22.0-0.22.9, 0.23.0, 0.24.0-0.24.2, 0.25.0-0.25.6, 0.26.0-0.26.1, 0.27.0, 0.28.0, 0.29.0, 0.30.0, 0.31.0-0.31.1] or uninstalled
 │   └─restricted to versions * by an explicit requirement, leaving only versions [0.9.4-0.9.5, 0.9.7-0.9.9, 0.10.1, 0.11.0-0.11.1, 0.13.4, 0.14.0, 0.15.0, 0.16.0, 0.17.0, 0.18.0-0.18.1, 0.19.0-0.19.1, 0.20.0, 0.21.0, 0.22.0-0.22.9, 0.23.0, 0.24.0-0.24.2, 0.25.0-0.25.6, 0.26.0-0.26.1, 0.27.0, 0.28.0, 0.29.0, 0.30.0, 0.31.0-0.31.1]
 ├─restricted by compatibility requirements with BinDeps [9e28174c] to versions: 0.5.0 or uninstalled, leaving only versions: 0.5.0
 │ └─BinDeps [9e28174c] log:
 │   ├─possible versions are: [0.7.0, 0.8.9-0.8.10, 1.0.0-1.0.1] or uninstalled
 │   └─restricted to versions 1.0.1 by an explicit requirement, leaving only versions 1.0.1
 └─restricted by julia compatibility requirements to versions: 0.4.0 or uninstalled — no versions left
  • I can’t use another version of Julia (it’s for a project which is in Julia 1.2)
  • I tried to install the packages that have compatibility issues separately but I’m always blocked with Nettle.
(v1.2) pkg> status BinDeps
    Status `C:\Users\amoreaub\.julia\environments\v1.2\Project.toml`
  [9e28174c] BinDeps v1.0.1

(v1.2) pkg> add Nettle
 Resolving package versions...
ERROR: Unsatisfiable requirements detected for package Nettle [49dea1ee]:
 Nettle [49dea1ee] log:
 ├─possible versions are: [0.4.0, 0.5.0] or uninstalled
 ├─restricted to versions * by an explicit requirement, leaving only versions [0.4.0, 0.5.0]
 ├─restricted by compatibility requirements with BinDeps [9e28174c] to versions: 0.5.0 or uninstalled, leaving only versions: 0.5.0
 │ └─BinDeps [9e28174c] log:
 │   ├─possible versions are: [0.7.0, 0.8.9-0.8.10, 1.0.0-1.0.1] or uninstalled
 │   └─restricted to versions 1.0.1 by an explicit requirement, leaving only versions 1.0.1
 └─restricted by julia compatibility requirements to versions: 0.4.0 or uninstalled — no versions left

Do you guys have any advice for me ?

Thx for your help.

Aubin