Skip to content

Commit 3415bc0

Browse files
committed
updates
1 parent 32d5a29 commit 3415bc0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ jobs:
4444
- name: Install dependencies
4545
run: |
4646
python -m pip install --upgrade pip
47-
python -m pip install .[test]
48-
python -m pip install .[standalone]
47+
python -m pip install .[test,standalone]
4948
5049
- name: Test with pytest
5150
run: python -m pytest -vv --durations 25

CHANGES

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Release 1.0.7 (Pending)
2+
==========================
3+
4+
* Fix circular dependency with Sphinx that caused failure in DAG-based package management
5+
16
Release 1.0.6 (2023-08-09)
27
==========================
38

sphinxcontrib/applehelp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ def do_codesign(self) -> None:
227227

228228

229229
def setup(app: Sphinx) -> dict[str, Any]:
230+
app.require_sphinx('5.0')
230231
app.setup_extension('sphinx.builders.html')
231232
app.add_builder(AppleHelpBuilder)
232233
app.add_message_catalog(__name__, path.join(package_dir, 'locales'))

0 commit comments

Comments
 (0)