# airflow-provider-hightouch 5.0.0 (Airflow 3) missing from PyPI
## What's going on
The Airflow 3 compatible release of the Hightouch provider (5.0.0) never made it to PyPI. The CI publish job failed with `400 User 'pedramhightouch' does not have two-factor authentication enabled`, because the PyPI package was owned by a former employee's account the team couldnt access. They were in the process of requesting a package transfer.
## The verified fix
Until the PyPI ownership transfer completes, install the Airflow 3 compatible version straight from git. A maintainer posted this workaround and a reporter confirmed it worked:
```toml
# pyproject.toml
dependencies = [
"airflow-provider-hightouch @ git+https://github.com/hightouchio/airflow-provider-hightouch.git@5.0.0"
]
```
or in requirements.txt:
```
git+https://github.com/hightouchio/airflow-provider-hightouch.git@5.0.0
```
Source: https://github.com/hightouchio/airflow-provider-hightouch/issues/34
## How to use this
Take the question above and check if it matches what you're seeing. If it does, work through the verified fix step by step. Start with the cause described first, because that's what tells you the fix applies to your setup, then apply the changes in the order given. Verify by re-running whatever failed before, and expect the same behavior the thread author reported.