diff --git a/.circleci/scripts/pre_commit_readme_extra.py b/.circleci/scripts/pre_commit_readme_extra.py index 94618fed9..f62307970 100755 --- a/.circleci/scripts/pre_commit_readme_extra.py +++ b/.circleci/scripts/pre_commit_readme_extra.py @@ -10,7 +10,7 @@ config.read(repo_dir / "setup.cfg") all_extra = [] -extra_to_exclude = {"tests", "mypy", "docs"} +extra_to_exclude = {"tests", "mypy", "docs", "test_python_3_11"} all_extras = set(config["options.extras_require"].keys()) - extra_to_exclude readme_path = repo_dir / "README.rst" diff --git a/.circleci/scripts/pre_commit_setup_cfg_all_extra.py b/.circleci/scripts/pre_commit_setup_cfg_all_extra.py index 2a446659c..03b28cf64 100755 --- a/.circleci/scripts/pre_commit_setup_cfg_all_extra.py +++ b/.circleci/scripts/pre_commit_setup_cfg_all_extra.py @@ -12,7 +12,7 @@ config.read(repo_dir / "setup.cfg") all_extra = [] -extra_to_exclude = {"tests", "mypy", "docs", "all", "test_python_3_11"} +extra_to_exclude = {"tests", "mypy", "docs", "all"} for k in config["options.extras_require"].keys(): if k in extra_to_exclude: continue