Skip to content

Commit c8e8ca2

Browse files
authored
Merge pull request #47 from python-project-templates/copier-update-2025-07-16T01-52-37
Update from copier (2025-07-16T01:52:37)
2 parents ae0fe6d + c0ae303 commit c8e8ca2

File tree

2 files changed

+63
-83
lines changed

2 files changed

+63
-83
lines changed

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

.gitignore

Lines changed: 62 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,24 @@ __pycache__/
1313

1414
# Distribution / packaging
1515
.Python
16-
env/
1716
build/
1817
develop-eggs/
1918
dist/
2019
downloads/
2120
eggs/
2221
.eggs/
23-
include/
2422
lib/
2523
lib64/
2624
parts/
2725
sdist/
2826
var/
27+
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
2930
*.egg-info/
3031
.installed.cfg
3132
*.egg
33+
MANIFEST
3234

3335
# PyInstaller
3436
# Usually these files are written by a python script from a template
@@ -43,18 +45,17 @@ pip-delete-this-directory.txt
4345
# Unit test / coverage reports
4446
htmlcov/
4547
.tox/
48+
.nox/
4649
.coverage
4750
.coverage.*
4851
.cache
49-
python_junit.xml
50-
junit.xml
5152
nosetests.xml
5253
coverage.xml
53-
*,cover
54+
junit.xml
55+
*.cover
56+
*.py,cover
5457
.hypothesis/
55-
.pytest_cache
56-
.ruff_cache
57-
js/playwright-report
58+
.pytest_cache/
5859

5960
# Translations
6061
*.mo
@@ -63,65 +64,69 @@ js/playwright-report
6364
# Django stuff:
6465
*.log
6566
local_settings.py
67+
db.sqlite3
68+
db.sqlite3-journal
6669

67-
# Flask instance folder
70+
# Flask stuff:
6871
instance/
72+
.webassets-cache
6973

7074
# Scrapy stuff:
7175
.scrapy
7276

73-
# Sphinx documentation
74-
docs/_build/
75-
docs/source
76-
7777
# PyBuilder
7878
target/
7979

80-
# IPython Notebook
81-
.ipynb_checkpoints
82-
*.ipynb
83-
.autoversion
80+
# IPython
81+
profile_default/
82+
ipython_config.py
8483

8584
# pyenv
8685
.python-version
8786

88-
# celery beat schedule file
87+
# pipenv
88+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
90+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
91+
# install all needed dependencies.
92+
#Pipfile.lock
93+
94+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
95+
__pypackages__/
96+
97+
# Celery stuff
8998
celerybeat-schedule
99+
celerybeat.pid
90100

91-
# dotenv
92-
.env
101+
# SageMath parsed files
102+
*.sage.py
93103

94-
# virtualenv
104+
# Environments
105+
.env
106+
.venv
107+
env/
95108
venv/
96109
ENV/
110+
env.bak/
111+
venv.bak/
97112

98113
# Spyder project settings
99114
.spyderproject
115+
.spyproject
100116

101117
# Rope project settings
102118
.ropeproject
103119

104-
# =========================
105-
# Operating System Files
106-
# =========================
107-
108-
# OSX
109-
# =========================
110-
111-
.DS_Store
112-
.AppleDouble
113-
.LSOverride
120+
# mkdocs documentation
121+
/site
114122

115-
# Thumbnails
116-
._*
123+
# mypy
124+
.mypy_cache/
125+
.dmypy.json
126+
dmypy.json
117127

118-
# Files that might appear in the root of a volume
119-
.DocumentRevisions-V100
120-
.fseventsd
121-
.Spotlight-V100
122-
.TemporaryItems
123-
.Trashes
124-
.VolumeIcon.icns
128+
# Pyre type checker
129+
.pyre/
125130

126131
# Documentation
127132
/site
@@ -130,49 +135,24 @@ docs/_build/
130135
docs/src/_build/
131136
docs/api
132137
docs/index.md
138+
docs/html
139+
docs/jupyter_execute
140+
index.md
133141

134-
# Directories potentially created on remote AFP share
135-
.AppleDB
136-
.AppleDesktop
137-
Network Trash Folder
138-
Temporary Items
139-
.apdisk
140-
141-
# Windows
142-
# =========================
143-
144-
# Windows image file caches
145-
Thumbs.db
146-
ehthumbs.db
147-
148-
# Folder config file
149-
Desktop.ini
150-
151-
# Recycle Bin used on file shares
152-
$RECYCLE.BIN/
153-
154-
# Windows Installer files
155-
*.cab
156-
*.msi
157-
*.msm
158-
*.msp
159-
160-
# Windows shortcuts
161-
*.lnk
162-
163-
164-
# NPM
165-
# ----
166-
**/node_modules/
142+
# JS
143+
js/coverage
144+
js/dist
145+
js/lib
146+
js/node_modules
167147

168-
# Coverage data
169-
# -------------
170-
**/coverage/
148+
# Jupyter
149+
.ipynb_checkpoints
150+
.autoversion
151+
python_template_js/nbextension
152+
python_template_js/labextension
171153

172-
# Notebook and lab extensions
154+
# Mac
155+
.DS_Store
173156

174-
nbprint/extension/*
175-
nbprint/templates/nbprint/static/*
176-
nbprint/voila/static/*
177-
tmp.html
178-
examples/output/
157+
# Rust
158+
target

0 commit comments

Comments
 (0)