Skip to content

Commit 99d58f2

Browse files
authored
Update dependencies, pin sphinx-markdown-builder to fix docs build (#75)
This updates dependencies, but I had to fix some incompatilibilities: - pinned `sphinx` to `<= 4.3`, because `4.4` requires `importlib_metadata >= 4.4`, which is not compatible with `flake8 >= 4` - pinned `sphinx-autodoc-typehints` to `<= 1.17`, because `1.18` requires `Sphinx >= 4.5`, which is not compatible with `flake8 >= 4` - pinned `sphinx-markdown-builder` to `== 0.5.4`, because `0.5.5` has a formatting bug
1 parent ebefbae commit 99d58f2

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

setup.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -48,23 +48,23 @@
4848
package_dir={'': 'src'},
4949
packages=find_packages(where='src'),
5050
python_requires='>=3.7',
51-
install_requires=['requests ~= 2.26.0'],
51+
install_requires=['requests ~= 2.28.0'],
5252
extras_require={
5353
'dev': [
54-
'autopep8 ~= 1.5.7',
55-
'flake8 ~= 3.9.2',
56-
'flake8-commas ~= 2.0.0',
54+
'autopep8 ~= 1.6.0',
55+
'flake8 ~= 4.0.1',
56+
'flake8-commas ~= 2.1.0',
5757
'flake8-docstrings ~= 1.6.0',
58-
'flake8-isort ~= 4.0.0',
59-
'flake8-quotes ~= 3.3.0',
60-
'isort ~= 5.9.3',
61-
'mypy ~= 0.910',
62-
'pep8-naming ~= 0.12.1',
63-
'pytest ~= 6.2.2',
64-
'sphinx ~= 4.2.0',
65-
'sphinx-autodoc-typehints ~= 1.12.0',
66-
'sphinx-markdown-builder ~= 0.5.4',
67-
'types-requests ~= 2.25.6',
58+
'flake8-isort ~= 4.1.1',
59+
'flake8-quotes ~= 3.3.1',
60+
'isort ~= 5.10.1',
61+
'mypy ~= 0.961',
62+
'pep8-naming ~= 0.13.0',
63+
'pytest ~= 7.1.2',
64+
'sphinx <= 4.3', # pinned to <= 4.3, because 4.4 requires importlib_metadata >= 4.4, which is not compatible with flake8 >= 4
65+
'sphinx-autodoc-typehints <= 1.17', # pinned to <= 1.17, because 1.18 requires Sphinx >= 4.5, which is not compatible with flake8 >= 4
66+
'sphinx-markdown-builder == 0.5.4', # pinned to 0.5.4, because 0.5.5 has a formatting bug
67+
'types-requests ~= 2.28.0',
6868
],
6969
},
7070
)

src/apify_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.5.0'
1+
__version__ = '0.6.0'

0 commit comments

Comments
 (0)