Skip to content

Commit

Permalink
try quick fix in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
annahedstroem authored Mar 18, 2024
1 parent f5bc365 commit 0551bda
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
required = f.read().splitlines()
required = [line.strip() for line in f.readlines() if "git+" not in line]

# Fix to make @git work
required.append("Quantus @ git+https://github.com/understandable-machine-intelligence-lab/Quantus.git")

# Define setup.
setup(
Expand Down

0 comments on commit 0551bda

Please sign in to comment.