Skip to content

Commit 1379c27

Browse files
committed
fix remaining tests
1 parent f6fecee commit 1379c27

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

packages/help/mypy.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[mypy]
2+
python_version = 3.10
3+
ignore_missing_imports = True
4+
strict = True
5+
show_error_codes = True

packages/help/noxfile.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import nox
1919

2020
DEFAULT_PYTHON_VERSION = "3.14"
21-
ALL_PYTHON = ["3.10", "3.11", "3.12", "3.13", "3.14"]
21+
ALL_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2222
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
2323
REPO_ROOT = CURRENT_DIRECTORY.parent.parent
2424

@@ -36,6 +36,7 @@
3636
"prerelease_deps",
3737
"core_deps_from_source",
3838
"docfx",
39+
"docs",
3940
]
4041

4142
# Error if a python version is missing
@@ -98,3 +99,8 @@ def docfx(session):
9899
args.extend(["--doc", title, str(source)])
99100

100101
session.run("python", "docfx_helper.py", *args)
102+
103+
@nox.session(python=DEFAULT_PYTHON_VERSION)
104+
def docs(session):
105+
"""No-op session for docs."""
106+
session.log("This package does not have Sphinx documentation.")

packages/help/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"Topic :: Internet",
6868
],
6969
install_requires=dependencies,
70-
python_requires=">=3.10",
70+
python_requires=">=3.9",
7171
include_package_data=True,
7272
zip_safe=False,
7373
packages=["help"],

0 commit comments

Comments
 (0)