Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro committed Jul 12, 2023
1 parent b90ee50 commit 7313d30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/scripts/pre_commit_readme_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion .circleci/scripts/pre_commit_setup_cfg_all_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7313d30

Please sign in to comment.