Skip to content

Commit 2a4d842

Browse files
Update from copier (2026-03-08T05:37:04)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 601d77e commit 2a4d842

5 files changed

Lines changed: 36 additions & 28 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: 7e5612d
2+
_commit: 3160d4c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: python

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
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
@@ -74,7 +74,7 @@ jobs:
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

.gitignore

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ __pycache__/
1111
*.exp
1212
*.lib
1313

14+
# Rust
15+
target
16+
1417
# Distribution / packaging
1518
.Python
1619
build/
@@ -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
6463
local_settings.py
6564
db.sqlite3
6665
db.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
7968
profile_default/
8069
ipython_config.py
@@ -85,15 +74,12 @@ ipython_config.py
8574
# pipenv
8675
Pipfile.lock
8776

88-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
89-
__pypackages__/
90-
91-
# Celery stuff
77+
# Celery
9278
celerybeat-schedule
9379
celerybeat.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
141127
js/test-results
142128
js/playwright-report
143129
js/*.tgz
144-
check_dist/extension
145130

146131
# Jupyter
147132
.ipynb_checkpoints
148133
.autoversion
149134
Untitled*.ipynb
150-
!check_dist/extension/check_dist.json
151-
!check_dist/extension/install.json
135+
check_dist/extension
152136
check_dist/nbextension
153137
check_dist/labextension
154138

@@ -157,3 +141,7 @@ check_dist/labextension
157141

158142
# Rust
159143
target
144+
145+
# Hydra
146+
outputs/
147+
multirun/

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,22 @@ format: fix
4646
################
4747
# Other Checks #
4848
################
49+
<<<<<<< before updating
4950
.PHONY: check-dist checks check
5051

5152
check-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
5465
checks: check-dist
5566

5667
# Alias

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,14 @@ dependencies = [
3838
develop = [
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"
7479
search = 'version = "{current_version}"'
7580
replace = 'version = "{new_version}"'
7681

82+
<<<<<<< before updating
7783
[tool.check-dist]
7884
present = [
7985
"check_dist",
@@ -107,11 +113,14 @@ absent = [
107113

108114
]
109115

116+
=======
117+
>>>>>>> after updating
110118
[tool.coverage.run]
111119
branch = true
112120
omit = [
113121
"check_dist/tests/integration/",
114122
]
123+
115124
[tool.coverage.report]
116125
exclude_also = [
117126
"raise NotImplementedError",

0 commit comments

Comments
 (0)