I’m getting this error when running `meltano insta...
# troubleshooting
j
I’m getting this error when running
meltano install
Copy code
Loader 'target-bigquery' could not be installed: failed to install plugin 'target-bigquery'.
  Running command git clone --filter=blob:none -q <https://github.com/adswerve/target-bigquery.git> /private/tmp/pip-req-build-jnkekr9o
ERROR: Cannot install setuptools==57.5.0 and target-bigquery==0.11.0 because these package versions have conflicting dependencies.
ERROR: ResolutionImpossible: for help visit <https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies>
however my target in meltano.yml I’m listing 011.3, so I’m not sure why the conflict is comming up in that way?
Copy code
- name: target-bigquery
    variant: adswerve
    pip_url: git+<https://github.com/adswerve/target-bigquery.git@0.11.3>
e
Hi @johannes_rudolph!
0.11.3
is the latest git tag, but the Python package version declared in
setup.py
is still `0.11.0`: https://github.com/adswerve/target-bigquery/blob/master/setup.py#L14. The issue of conflicting dependencies between that target and
setuptools
has come up a few times recently so I created an issue in their repo: https://github.com/adswerve/target-bigquery/issues/26 In the meantime, a couple of alternatives are: • Use pipelinewise-target-bigquery (as a custom plugin) • Fork the adswerve variant with a bump to
setuptools
@johannes_rudolph they released a new version with the updated dependency: https://meltano.slack.com/archives/C01V8L0NZC1/p1641586101003900
r
I made a PR to update the docs since I ran into this aswell 🙂 https://github.com/meltano/hub/pull/635#issuecomment-1169726600
e
@rick_smit Your update is live now!