Skip to content

Commit fb9313d

Browse files
Pin dependencies to fix doc building (#365)
1 parent 2c6194c commit fb9313d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

doc/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
aiohttp
22
asyncio>=3.4
3-
click
4-
cloup
3+
click~=8.1
4+
cloup~=3.0
55
ipython
66
nbsphinx
77
orjson
8-
requests
8+
requests~=2.32
99
setuptools_scm
10-
sphinx
10+
sphinx<8.2.0 # doesn't work with nbsphinx
1111
sphinx-click
1212
sphinx-rtd-theme
1313
websockets>=14.1

tests/nft/test_nft_market.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
if TYPE_CHECKING:
1717
from kraken.nft import Market
1818

19+
pytestmark = [pytest.mark.skip(reason="NFT Market API is not available.")]
20+
1921

2022
@pytest.mark.nft
2123
@pytest.mark.nft_market

tests/nft/test_nft_trade.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
KrakenNFTNotAvailableError,
2525
)
2626

27+
pytestmark = [pytest.mark.skip(reason="NFT Market API is not available.")]
28+
2729

2830
@pytest.mark.nft
2931
@pytest.mark.nft_auth

0 commit comments

Comments
 (0)