damavis / airflow-pentaho-plugin

Pentaho plugin for Apache Airflow - Orquestate pentaho transformations and jobs from Airflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

airflow-pentaho-plugin installation error

pkashibh opened this issue · comments

Hi, I'm trying to install airflow-pentaho-plugin I'm getting the following error. I'm also trying to use Python setup.py install command and the error still remains the same. Request you to help me unblock this installation process.
Environment - Python3.9
Pip version - 21.0.1
Command - sudo pip install airflow-pentaho-plugin --proxy=http://proxy:port
Error - ERROR: Could not find a version that satisfies the requirement setuptools-git-version

I've also run the requires.txt and I see the following message when I rerun:
Requirement already satisfied: xmltodict>=0.10.0 in /usr/lib/python3.9/site-packages (from -r requires.txt (line 1)) (0.12.0)

Could you please let me know what am I missing here?

Thanks,
Pavan

Hi @pkashibh .

First of all, thank you for your interest.

I've added tests for python 3.6, 3.8 and 3.9 to avoid dependencies issues. Even though, I was able to install setuptools-git-version on python 3.9 enviroment using pip 21.0.1 with no problem as you can check here:

https://travis-ci.org/github/damavis/airflow-pentaho-plugin/jobs/765317362#L181
https://travis-ci.org/github/damavis/airflow-pentaho-plugin/jobs/765317362#L183
https://travis-ci.org/github/damavis/airflow-pentaho-plugin/jobs/765317362#L203

I could not reproduce the error, so I suggest you to use a clean virtualenv (I see you used sudo pip install ..., this probably means that your environment it is not) and try it again.

I would be happy to receive more feedback.

Thanks.

Hi @pkashibh

Take a look at Apache Airflow requirements: https://github.com/apache/airflow#requirements , It is not tested on python3.9. I recommend you to use 3.7 or 3.8.

Thanks.