Skip to content

Commit

Permalink
Fix: pyproject.toml used fork of aioipfs
Browse files Browse the repository at this point in the history
This fork is not necessary since the upstream added compatibility with Python 3.11 and 3.12.

On the opposite, our fork did not support Python 3.12, so going upstream makes the most sense.
  • Loading branch information
hoh committed Jul 15, 2024
1 parent f9223b9 commit f6208f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling", "hatch-vcs"]
requires = ["hatchling", "hatch-vcs", "setuptools>=70.3.0"]
build-backend = "hatchling.build"

[project]
Expand All @@ -22,7 +22,8 @@ dependencies = [
"aiohttp-cors==0.7.0",
"aiohttp-jinja2==1.5",
"aiohttp==3.9.5",
"aioipfs@git+https://github.com/aleph-im/aioipfs.git@d671c79b2871bb4d6c8877ba1e7f3ffbe7d20b71",
"aioipfs==0.7.1",
"setuptools>=70.3.0", # Required by aioipfs
"alembic==1.12.1",
"aleph-message==0.4.8",
"aleph-p2p-client@git+https://github.com/aleph-im/p2p-service-client-python@2c04af39c566217f629fd89505ffc3270fba8676",
Expand Down Expand Up @@ -66,7 +67,6 @@ dependencies = [
]
dependency_links = [
"https://github.com/aleph-im/py-libp2p/tarball/0.1.4-1-use-set#egg=libp2p",
"https://github.com/aleph-im/aioipfs/tarball/hoh-more-exceptions#egg=aioipfs",
]

[project.optional-dependencies]
Expand Down

0 comments on commit f6208f4

Please sign in to comment.