From adb97ebc1d0bdfcffa715cade8cf4788f3cdc24d Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Feb 2026 05:45:44 +0000 Subject: [PATCH 1/2] Update from copier (2026-02-15T05:45:44) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- pyproject.toml | 45 ++++++++++++++++++++++++++++++++++++-------- 2 files changed, 38 insertions(+), 9 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 6d2f1c6..72ae32e 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: b74d698 +_commit: 37f89c1 _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: python diff --git a/pyproject.toml b/pyproject.toml index 2afb2b6..9ba5c51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,14 @@ [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", +] build-backend="hatchling.build" [project] name = "fsspec-python" -authors = [{name = "the fsspec-python authors", email = "t.paine154@gmail.com"}] +authors = [ + {name = "the fsspec-python authors", email = "t.paine154@gmail.com"}, +] description = "Native python integration for fsspec backends" readme = "README.md" license = { text = "Apache-2.0" } @@ -45,6 +49,7 @@ develop = [ "pytest-cov", "ruff>=0.9,<0.15", "twine", + "ty", "uv", "wheel", # Tests @@ -101,28 +106,52 @@ artifacts = [] src = "/" [tool.hatch.build.targets.sdist] -packages = ["fsspec_python"] +packages = [ + "fsspec_python", +] [tool.hatch.build.targets.wheel] -packages = ["fsspec_python"] +packages = [ + "fsspec_python", +] [tool.hatch.build.targets.wheel.shared-data] [tool.pytest.ini_options] -addopts = ["-vvv", "--junitxml=junit.xml"] +addopts = [ + "-vvv", + "--junitxml=junit.xml", +] testpaths = "fsspec_python/tests" [tool.ruff] line-length = 150 [tool.ruff.lint] -extend-select = ["I"] +extend-select = [ + "I", +] [tool.ruff.lint.isort] combine-as-imports = true default-section = "third-party" -known-first-party = ["fsspec_python"] -section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"] +known-first-party = [ + "fsspec_python", +] +section-order = [ + "future", + "standard-library", + "third-party", + "first-party", + "local-folder", +] [tool.ruff.lint.per-file-ignores] +<<<<<<< before updating "__init__.py" = ["F401", "F403"] +======= +"__init__.py" = [ + "F401", + "F403", +] +>>>>>>> after updating From deeecb336b9227d3672c1a3044977fea68cf7d83 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 15 Feb 2026 00:48:58 -0500 Subject: [PATCH 2/2] Refactor per-file ignores for __init__.py --- pyproject.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9ba5c51..1fd1f3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,11 +147,7 @@ section-order = [ ] [tool.ruff.lint.per-file-ignores] -<<<<<<< before updating -"__init__.py" = ["F401", "F403"] -======= "__init__.py" = [ "F401", "F403", ] ->>>>>>> after updating