From 6a1d58210b05b3b698141d5bbe9beee4fc7ebd21 Mon Sep 17 00:00:00 2001 From: nstarman Date: Thu, 16 May 2024 01:21:53 -0400 Subject: [PATCH] build: bump copier Signed-off-by: nstarman --- .copier-answers.yml | 2 +- .github/workflows/cd.yml | 2 ++ .github/workflows/ci.yml | 4 ++++ .readthedocs.yml => .readthedocs.yaml | 0 noxfile.py | 2 ++ 5 files changed, 9 insertions(+), 1 deletion(-) rename .readthedocs.yml => .readthedocs.yaml (100%) diff --git a/.copier-answers.yml b/.copier-answers.yml index 3f380e8..878a223 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 2023.12.21 +_commit: 2024.04.23 _src_path: gh:scientific-python/cookie backend: hatch email: nstarman@users.noreply.github.com diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 62eb51d..db49997 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -15,6 +15,8 @@ concurrency: cancel-in-progress: true env: + # Many color libraries just need this to be set to any value, but at least + # one distinguishes color depth, where "3" -> "256-bit color". FORCE_COLOR: 3 jobs: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0076947..a348252 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,8 @@ concurrency: cancel-in-progress: true env: + # Many color libraries just need this to be set to any value, but at least + # one distinguishes color depth, where "3" -> "256-bit color". FORCE_COLOR: 3 jobs: @@ -67,3 +69,5 @@ jobs: - name: Upload coverage report uses: codecov/codecov-action@v4.3.1 + with: + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.readthedocs.yml b/.readthedocs.yaml similarity index 100% rename from .readthedocs.yml rename to .readthedocs.yaml diff --git a/noxfile.py b/noxfile.py index 7c301d9..b432751 100644 --- a/noxfile.py +++ b/noxfile.py @@ -10,7 +10,9 @@ DIR = Path(__file__).parent.resolve() +nox.needs_version = ">=2024.3.2" nox.options.sessions = ["lint", "pylint", "tests"] +nox.options.default_venv_backend = "uv|virtualenv" @nox.session