File tree Expand file tree Collapse file tree 4 files changed +21
-29
lines changed
Expand file tree Collapse file tree 4 files changed +21
-29
lines changed 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 @@ -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,14 @@ format: fix
4646# ###############
4747# Other Checks #
4848# ###############
49- .PHONY : check-dist checks check
49+ .PHONY : check-dist check-types checks check
5050
51- check-dist : # # check python sdist with check-dist
51+ check-dist : # # check python sdist and wheel with check-dist
5252 check-dist -v
5353
54+ check-types : # # check python types with ty
55+ ty check --python $$(which python )
56+
5457checks : check-dist
5558
5659# Alias
Original file line number Diff line number Diff line change @@ -38,9 +38,9 @@ dependencies = [
3838develop = [
3939 " build" ,
4040 " bump-my-version" ,
41- " codespell>=2.4,<2.5 " ,
41+ " codespell" ,
4242 " hatchling" ,
43- " mdformat>=0.7.22,<1.1 " ,
43+ " mdformat" ,
4444 " mdformat-tables>=1" ,
4545 " pytest" ,
4646 " pytest-cov" ,
@@ -112,6 +112,7 @@ branch = true
112112omit = [
113113 " check_dist/tests/integration/" ,
114114]
115+
115116[tool .coverage .report ]
116117exclude_also = [
117118 " raise NotImplementedError" ,
You can’t perform that action at this time.
0 commit comments