Skip to content

Commit bba6a48

Browse files
wpk-nist-govgithub-actions[bot]
authored andcommitted
chore(template): accept new copier update
1 parent 36f4a23 commit bba6a48

6 files changed

Lines changed: 9 additions & 15 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: v0.10.0-1-g4d30a6c
2+
_commit: v0.10.0-17-gffab420
33
_src_path: https://github.com/usnistgov/cookiecutter-nist-python.git
44
command_line_interface: typer
55
conda_channel: conda-forge

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ repos:
6666
files: ^pyproject\.toml$
6767
# ** validate (schema-store)
6868
- repo: https://github.com/henryiii/validate-pyproject-schema-store
69-
rev: 2026.03.27
69+
rev: 2026.03.29
7070
hooks:
7171
- id: validate-pyproject
7272
name: validate-pyproject-schema-store
@@ -99,7 +99,7 @@ repos:
9999

100100
# Just
101101
- repo: https://github.com/wpk-nist-gov/just-pre-commit
102-
rev: v1.48.0
102+
rev: v1.48.1
103103
hooks:
104104
- id: justfile-format
105105

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Ready to contribute? Here's how to make a contribution.
6161
```
6262

6363
If the repo includes submodules, you can add them either with the initial
64-
close using:
64+
clone using:
6565

6666
```bash
6767
git clone --recursive-submodules git@github.com:your_name_here/pyproject2conda.git

docs/conf.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
import os
2424
import sys
25+
from importlib.util import find_spec
2526
from pathlib import Path
2627
from typing import Any
2728

@@ -465,11 +466,6 @@ def linkcode_resolve(domain: str, info: dict[str, Any]) -> str | None:
465466

466467

467468
# only set spelling stuff if installed:
468-
try:
469-
import sphinxcontrib.spelling # noqa: F401
470-
469+
if find_spec("sphinxcontrib.spelling") is not None:
471470
extensions += ["sphinxcontrib.spelling"]
472471
spelling_word_list_filename = "spelling_wordlist.txt"
473-
474-
except ImportError:
475-
pass

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ lint-manual *commands: (pre-commit "run --all-files --hook-stage=manual" command
7474

7575
alias lint-all := lint-manual
7676

77-
# run prettier/markdownlint/pypoject-fmt
77+
# run prettier/markdownlint/pyproject-fmt
7878
[group("lint")]
7979
prettier: (lint "pyproject-fmt") (lint-manual "markdownlint")
8080

@@ -220,7 +220,7 @@ typecheck-all *checkers="mypy basedpyright": (nox "-s typecheck -- +m" checkers)
220220

221221
# * docs -----------------------------------------------------------------------
222222

223-
# build docs. Optioons {html, spelling, livehtml, linkcheck, open}.
223+
# build docs. Options {html, spelling, livehtml, linkcheck, open}.
224224
[group("docs")]
225225
[group("nox")]
226226
docs *options="html": (nox "-s docs -- +d" options)

tools/noxtools.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Utilities to wonferrk with nox"""
1+
"""Utilities to work with nox"""
22

33
from __future__ import annotations
44

@@ -17,8 +17,6 @@
1717

1818
from nox import Session
1919

20-
PathLike = str | Path
21-
2220

2321
# * Top level installation functions ---------------------------------------------------
2422
def py_prefix(python_version: Any) -> str:

0 commit comments

Comments
 (0)