Skip to content

Commit 5dec160

Browse files
authored
Merge pull request #16 from 1kbgz/copier-update-2026-02-21T22-36-32
Update from copier (2026-02-21T22:36:32)
2 parents 1fc8b19 + b25cc40 commit 5dec160

4 files changed

Lines changed: 20 additions & 20 deletions

File tree

.copier-answers.yaml

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
2-
_commit: 37f89c1
2+
_commit: b15e34d
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.gitignore

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,12 @@ js/node_modules
141141
js/test-results
142142
js/playwright-report
143143
js/*.tgz
144-
fsspec_python/extension
145144

146145
# Jupyter
147146
.ipynb_checkpoints
148147
.autoversion
149148
Untitled*.ipynb
150-
!fsspec_python/extension/fsspec_python.json
151-
!fsspec_python/extension/install.json
149+
fsspec_python/extension
152150
fsspec_python/nbextension
153151
fsspec_python/labextension
154152

@@ -158,5 +156,11 @@ fsspec_python/labextension
158156
# Rust
159157
target
160158

159+
<<<<<<< before updating
161160
# Tests
162161
fsspec_python/tests/dump/out.txt
162+
=======
163+
# Hydra
164+
outputs/
165+
multirun/
166+
>>>>>>> after updating

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,15 @@ format: fix
4646
################
4747
# Other Checks #
4848
################
49-
.PHONY: check-manifest checks check
49+
.PHONY: check-dist check-types checks check
5050

51-
check-manifest: ## check python sdist manifest with check-manifest
52-
check-manifest -v
51+
check-dist: ## check python sdist and wheel with check-dist
52+
check-dist -v
5353

54-
checks: check-manifest
54+
check-types: ## check python types with ty
55+
ty check --python $$(which python)
56+
57+
checks: check-dist
5558

5659
# Alias
5760
check: checks

pyproject.toml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires = [
33
"hatchling",
44
]
5-
build-backend="hatchling.build"
5+
build-backend = "hatchling.build"
66

77
[project]
88
name = "fsspec-python"
@@ -40,14 +40,14 @@ python = "fsspec_python.fs.PythonFileSystem"
4040
develop = [
4141
"build",
4242
"bump-my-version",
43-
"check-manifest",
44-
"codespell>=2.4,<2.5",
43+
"check-dist",
44+
"codespell",
4545
"hatchling",
46-
"mdformat>=0.7.22,<1.1",
46+
"mdformat",
4747
"mdformat-tables>=1",
4848
"pytest",
4949
"pytest-cov",
50-
"ruff>=0.9,<0.15",
50+
"ruff",
5151
"twine",
5252
"ty",
5353
"uv",
@@ -78,13 +78,6 @@ filename = "pyproject.toml"
7878
search = 'version = "{current_version}"'
7979
replace = 'version = "{new_version}"'
8080

81-
[tool.check-manifest]
82-
ignore = [
83-
".copier-answers.yaml",
84-
"Makefile",
85-
"docs/**/*",
86-
]
87-
8881
[tool.coverage.run]
8982
branch = true
9083
omit = [

0 commit comments

Comments
 (0)