Skip to content

Commit 7de6c0d

Browse files
authored
ci: add depandabot config (#90)
And update .gitignore
1 parent 5200f7c commit 7de6c0d

File tree

2 files changed

+195
-5
lines changed

2 files changed

+195
-5
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
# and
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"

.gitignore

Lines changed: 184 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,186 @@
1-
__pycache__
2-
.mypy_cache
3-
.pytest_cache
4-
.ruff_cache
5-
.mypy_cache_test
1+
.vs/
2+
.vscode/
3+
.idea/
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
pip-wheel-metadata/
27+
share/python-wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# Google GitHub Actions credentials files created by:
34+
# https://github.com/google-github-actions/auth
35+
#
36+
# That action recommends adding this gitignore to prevent accidentally committing keys.
37+
gha-creds-*.json
38+
39+
# PyInstaller
40+
# Usually these files are written by a python script from a template
41+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
42+
*.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.nox/
53+
.coverage
54+
.coverage.*
55+
.cache
56+
nosetests.xml
57+
coverage.xml
58+
*.cover
59+
*.py,cover
60+
.hypothesis/
61+
.pytest_cache/
62+
.codspeed/
63+
64+
# Translations
65+
*.mo
66+
*.pot
67+
68+
# Django stuff:
69+
*.log
70+
local_settings.py
71+
db.sqlite3
72+
db.sqlite3-journal
73+
74+
# Flask stuff:
75+
instance/
76+
.webassets-cache
77+
78+
# Scrapy stuff:
79+
.scrapy
80+
81+
# Sphinx documentation
82+
docs/_build/
83+
docs/docs/_build/
84+
85+
# PyBuilder
86+
target/
87+
88+
# Jupyter Notebook
89+
.ipynb_checkpoints
90+
notebooks/
91+
92+
# IPython
93+
profile_default/
94+
ipython_config.py
95+
96+
# pyenv
97+
.python-version
98+
99+
# pipenv
100+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
101+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
102+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
103+
# install all needed dependencies.
104+
#Pipfile.lock
105+
106+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
107+
__pypackages__/
108+
109+
# Celery stuff
110+
celerybeat-schedule
111+
celerybeat.pid
112+
113+
# SageMath parsed files
114+
*.sage.py
115+
116+
# Environments
6117
.env
118+
.envrc
7119
.venv*
120+
venv*
121+
env/
122+
ENV/
123+
env.bak/
124+
125+
# Spyder project settings
126+
.spyderproject
127+
.spyproject
128+
129+
# Rope project settings
130+
.ropeproject
131+
132+
# mkdocs documentation
133+
/site
134+
135+
# mypy
136+
.mypy_cache/
137+
.mypy_cache_test/
138+
.dmypy.json
139+
dmypy.json
140+
141+
# Pyre type checker
142+
.pyre/
143+
144+
# macOS display setting files
145+
.DS_Store
146+
147+
# Wandb directory
148+
wandb/
149+
150+
# asdf tool versions
151+
.tool-versions
152+
/.ruff_cache/
153+
154+
*.pkl
155+
*.bin
156+
157+
# integration test artifacts
158+
data_map*
159+
\[('_type', 'fake'), ('stop', None)]
160+
161+
# Replit files
162+
*replit*
163+
164+
node_modules
165+
docs/.yarn/
166+
docs/node_modules/
167+
docs/.docusaurus/
168+
docs/.cache-loader/
169+
docs/_dist
170+
docs/api_reference/*api_reference.rst
171+
docs/api_reference/*.md
172+
docs/api_reference/_build
173+
docs/api_reference/*/
174+
!docs/api_reference/_static/
175+
!docs/api_reference/templates/
176+
!docs/api_reference/themes/
177+
!docs/api_reference/_extensions/
178+
!docs/api_reference/scripts/
179+
docs/docs/build
180+
docs/docs/node_modules
181+
docs/docs/yarn.lock
182+
_dist
183+
docs/docs/templates
184+
185+
prof
186+
virtualenv/

0 commit comments

Comments
 (0)