File tree Expand file tree Collapse file tree 5 files changed +23
-22
lines changed
Expand file tree Collapse file tree 5 files changed +23
-22
lines changed Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier
2- _commit : 37f89c1
2+ _commit : 4d4d95a
33_src_path : https://github.com/python-project-templates/base.git
44add_docs : false
55add_extension : python
Original file line number Diff line number Diff line change 6060 run : make coverage
6161
6262 - name : Upload test results (Python)
63- uses : actions/upload-artifact@v6
63+ uses : actions/upload-artifact@v7
6464 with :
6565 name : test-results-${{ matrix.os }}-${{ matrix.python-version }}
6666 path : junit.xml
7979 - name : Make dist
8080 run : make dist
8181
82- - uses : actions/upload-artifact@v6
82+ - uses : actions/upload-artifact@v7
8383 with :
8484 name : dist-${{matrix.os}}
8585 path : dist
Original file line number Diff line number Diff line change @@ -141,14 +141,12 @@ js/node_modules
141141js /test-results
142142js /playwright-report
143143js /* .tgz
144- hatch_js /extension
145144
146145# Jupyter
147146.ipynb_checkpoints
148147.autoversion
149148Untitled * .ipynb
150- ! hatch_js /extension /hatch_js.json
151- ! hatch_js /extension /install.json
149+ hatch_js /extension
152150hatch_js /nbextension
153151hatch_js /labextension
154152
@@ -158,7 +156,13 @@ hatch_js/labextension
158156# Rust
159157target
160158
159+ <<<<<<< before updating
161160# Test parts
162161hatch_js /tests /test_project_basic /js /dist
163162hatch_js /tests /test_project_basic /js /node_modules
164163hatch_js /tests /test_project_basic /project /extension
164+ =======
165+ # Hydra
166+ outputs /
167+ multirun /
168+ >>>>>>> after updating
Original file line number Diff line number Diff 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
5760check : checks
Original file line number Diff line number Diff line change 22requires = [
33 " hatchling" ,
44]
5- build-backend = " hatchling.build"
5+ build-backend = " hatchling.build"
66
77[project ]
88name = " hatch-js"
@@ -47,14 +47,14 @@ dependencies = [
4747develop = [
4848 " build" ,
4949 " bump-my-version" ,
50- " check-manifest " ,
51- " codespell>=2.4,<2.5 " ,
50+ " check-dist " ,
51+ " codespell" ,
5252 " hatchling" ,
53- " mdformat>=0.7.22,<1.1 " ,
53+ " mdformat" ,
5454 " mdformat-tables>=1" ,
5555 " pytest" ,
5656 " pytest-cov" ,
57- " ruff>=0.9,<0.15 " ,
57+ " ruff" ,
5858 " twine" ,
5959 " ty" ,
6060 " uv" ,
@@ -90,18 +90,12 @@ filename = "pyproject.toml"
9090search = ' version = "{current_version}"'
9191replace = ' version = "{new_version}"'
9292
93- [tool .check-manifest ]
94- ignore = [
95- " .copier-answers.yaml" ,
96- " Makefile" ,
97- " docs/**/*" ,
98- ]
99-
10093[tool .coverage .run ]
10194branch = false
10295omit = [
10396 " hatch_js/tests/integration/" ,
10497]
98+
10599[tool .coverage .report ]
106100exclude_also = [
107101 " raise NotImplementedError" ,
You can’t perform that action at this time.
0 commit comments