Skip to content

Commit

Permalink
fix: should not list as a dependency of itself.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArcticLampyrid committed Jul 21, 2024
1 parent 4b3c948 commit 37e3309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

if __name__ == "__main__":
requirements = open("requirements.txt").readlines()
requirements = [r.strip() for r in requirements]
requirements = [r.strip() for r in requirements if not r.startswith("torchquantum")]

setup(
name="torchquantum",
Expand Down

0 comments on commit 37e3309

Please sign in to comment.