-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start integrating with py-ipfs-car-decoder
* Add a coroutine in DagAPI to unpack a UnixFS CAR export to a directory * DagAPI.export() now accepts an optional Path to write the CAR to * Use asyncio_mode=auto for pytest * Turn "iclient" into an async fixture that closes the session on exit * GH workflow: test all python versions up to 3.11, test kubo 0.24.0 revbump to 0.6.5
- Loading branch information
cipres
authored and
cipres
committed
Nov 18, 2023
1 parent
109e928
commit a4bd0f3
Showing
11 changed files
with
193 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.6.4' | ||
__version__ = '0.6.5' | ||
|
||
from yarl import URL | ||
from distutils.version import StrictVersion | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
importlib_metadata | ||
pytest | ||
pytest-asyncio | ||
tox | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
aiohttp>=3.7.4 | ||
aiofiles>=0.7.0 | ||
base58>=1.0.2 | ||
gitignore-parser>=0.1.9 | ||
gitignore-parser==0.1.9 | ||
multiaddr>=0.0.9 | ||
py-multibase>=1.0.3 | ||
py-multiformats-cid>=0.4.3 | ||
setuptools>=67.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.