File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier
2- _commit : 7e5612d
2+ _commit : 3160d4c
33_src_path : https://github.com/python-project-templates/base.git
44add_docs : true
55add_extension : python
Original file line number Diff line number Diff line change 5555 run : make coverage
5656
5757 - name : Upload test results (Python)
58- uses : actions/upload-artifact@v6
58+ uses : actions/upload-artifact@v7
5959 with :
6060 name : test-results-${{ matrix.os }}-${{ matrix.python-version }}
6161 path : junit.xml
7474 - name : Make dist
7575 run : make dist
7676
77- - uses : actions/upload-artifact@v6
77+ - uses : actions/upload-artifact@v7
7878 with :
7979 name : dist-${{matrix.os}}
8080 path : dist
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ __pycache__/
1111* .exp
1212* .lib
1313
14+ # Rust
15+ target
16+
1417# Distribution / packaging
1518.Python
1619build /
@@ -55,26 +58,12 @@ junit.xml
5558.hypothesis /
5659.pytest_cache /
5760
58- # Translations
59- * .mo
60- * .pot
61-
62- # Django stuff:
61+ # Django
6362* .log
6463local_settings.py
6564db.sqlite3
6665db.sqlite3-journal
6766
68- # Flask stuff:
69- instance /
70- .webassets-cache
71-
72- # Scrapy stuff:
73- .scrapy
74-
75- # PyBuilder
76- target /
77-
7867# IPython
7968profile_default /
8069ipython_config.py
@@ -85,15 +74,12 @@ ipython_config.py
8574# pipenv
8675Pipfile.lock
8776
88- # PEP 582; used by e.g. github.com/David-OConnor/pyflow
89- __pypackages__ /
90-
91- # Celery stuff
77+ # Celery
9278celerybeat-schedule
9379celerybeat.pid
9480
95- # SageMath parsed files
96- * .sage.py
81+ # Airspeed Velocity
82+ .asv
9783
9884# Environments
9985.env
@@ -141,14 +127,12 @@ js/node_modules
141127js /test-results
142128js /playwright-report
143129js /* .tgz
144- check_dist /extension
145130
146131# Jupyter
147132.ipynb_checkpoints
148133.autoversion
149134Untitled * .ipynb
150- ! check_dist /extension /check_dist.json
151- ! check_dist /extension /install.json
135+ check_dist /extension
152136check_dist /nbextension
153137check_dist /labextension
154138
@@ -157,3 +141,7 @@ check_dist/labextension
157141
158142# Rust
159143target
144+
145+ # Hydra
146+ outputs /
147+ multirun /
Original file line number Diff line number Diff line change @@ -46,11 +46,22 @@ format: fix
4646# ###############
4747# Other Checks #
4848# ###############
49+ <<<<<<< before updating
4950.PHONY : check-dist checks check
5051
5152check-dist : # # check python sdist with check-dist
5253 check-dist -v
5354
55+ ====== =
56+ .PHONY : check-dist check-types checks check
57+
58+ check-dist : # # check python sdist and wheel with check-dist
59+ check-dist -v
60+
61+ check-types : # # check python types with ty
62+ ty check --python $$(which python )
63+
64+ >>>>>>> after updating
5465checks : check-dist
5566
5667# Alias
Original file line number Diff line number Diff line change @@ -38,9 +38,14 @@ dependencies = [
3838develop = [
3939 " build" ,
4040 " bump-my-version" ,
41+ <<<<<<< before updating
4142 " codespell>=2.4,<2.5" ,
43+ =======
44+ " check-dist" ,
45+ " codespell" ,
46+ >>>>>>> after updating
4247 " hatchling" ,
43- " mdformat>=0.7.22,<1.1 " ,
48+ " mdformat" ,
4449 " mdformat-tables>=1" ,
4550 " pytest" ,
4651 " pytest-cov" ,
@@ -74,6 +79,7 @@ filename = "pyproject.toml"
7479search = ' version = "{current_version}"'
7580replace = ' version = "{new_version}"'
7681
82+ <<<<<<< before updating
7783[tool .check-dist ]
7884present = [
7985 " check_dist" ,
@@ -107,11 +113,14 @@ absent = [
107113
108114]
109115
116+ =======
117+ >>>>>>> after updating
110118[tool .coverage .run ]
111119branch = true
112120omit = [
113121 " check_dist/tests/integration/" ,
114122]
123+
115124[tool .coverage .report ]
116125exclude_also = [
117126 " raise NotImplementedError" ,
You can’t perform that action at this time.
0 commit comments