1
+ .gitattributes
2
+ _proc /
3
+ index_files /
4
+ sidebar.yml
5
+ Gemfile.lock
6
+ token
7
+ _docs /
8
+ conda /
9
+ .last_checked
10
+ .gitconfig
11
+ * .bak
12
+ * .log
13
+ * ~
14
+ ~ *
15
+ _tmp *
16
+ tmp *
17
+ tags
18
+
1
19
# Byte-compiled / optimized / DLL files
2
20
__pycache__ /
3
21
* .py [cod ]
@@ -8,6 +26,7 @@ __pycache__/
8
26
9
27
# Distribution / packaging
10
28
.Python
29
+ env /
11
30
build /
12
31
develop-eggs /
13
32
dist /
@@ -20,11 +39,9 @@ parts/
20
39
sdist /
21
40
var /
22
41
wheels /
23
- share /python-wheels /
24
42
* .egg-info /
25
43
.installed.cfg
26
44
* .egg
27
- MANIFEST
28
45
29
46
# PyInstaller
30
47
# Usually these files are written by a python script from a template
@@ -39,17 +56,13 @@ pip-delete-this-directory.txt
39
56
# Unit test / coverage reports
40
57
htmlcov /
41
58
.tox /
42
- .nox /
43
59
.coverage
44
60
.coverage. *
45
61
.cache
46
62
nosetests.xml
47
63
coverage.xml
48
64
* .cover
49
- * .py,cover
50
65
.hypothesis /
51
- .pytest_cache /
52
- cover /
53
66
54
67
# Translations
55
68
* .mo
58
71
# Django stuff:
59
72
* .log
60
73
local_settings.py
61
- db.sqlite3
62
- db.sqlite3-journal
63
74
64
75
# Flask stuff:
65
76
instance /
@@ -72,61 +83,27 @@ instance/
72
83
docs /_build /
73
84
74
85
# PyBuilder
75
- .pybuilder /
76
86
target /
77
87
78
88
# Jupyter Notebook
79
89
.ipynb_checkpoints
80
90
81
- # IPython
82
- profile_default /
83
- ipython_config.py
84
-
85
91
# pyenv
86
- # For a library or package, you might want to ignore these files since the code is
87
- # intended to run in multiple environments; otherwise, check them in:
88
- # .python-version
89
-
90
- # pipenv
91
- # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
- # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
- # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
- # install all needed dependencies.
95
- # Pipfile.lock
96
-
97
- # poetry
98
- # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
- # This is especially recommended for binary packages to ensure reproducibility, and is more
100
- # commonly ignored for libraries.
101
- # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
- # poetry.lock
103
-
104
- # pdm
105
- # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
- # pdm.lock
107
- # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
- # in version control.
109
- # https://pdm.fming.dev/#use-with-ide
110
- .pdm.toml
111
-
112
- # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
- __pypackages__ /
114
-
115
- # Celery stuff
92
+ .python-version
93
+
94
+ # celery beat schedule file
116
95
celerybeat-schedule
117
- celerybeat.pid
118
96
119
97
# SageMath parsed files
120
98
* .sage.py
121
99
122
- # Environments
100
+ # dotenv
123
101
.env
102
+
103
+ # virtualenv
124
104
.venv
125
- env /
126
105
venv /
127
106
ENV /
128
- env.bak /
129
- venv.bak /
130
107
131
108
# Spyder project settings
132
109
.spyderproject
@@ -140,21 +117,34 @@ venv.bak/
140
117
141
118
# mypy
142
119
.mypy_cache /
143
- .dmypy.json
144
- dmypy.json
145
120
146
- # Pyre type checker
147
- .pyre /
121
+ .vscode
122
+ * .swp
123
+
124
+ # osx generated files
125
+ .DS_Store
126
+ .DS_Store ?
127
+ .Trashes
128
+ ehthumbs.db
129
+ Thumbs.db
130
+ .idea
131
+
132
+ # pytest
133
+ .pytest_cache
134
+
135
+ # tools/trust-doc-nbs
136
+ docs_src /.last_checked
137
+
138
+ # symlinks to fastai
139
+ docs_src /fastai
140
+ tools /fastai
141
+
142
+ # link checker
143
+ checklink /cookies.txt
148
144
149
- # pytype static type analyzer
150
- .pytype /
145
+ # .gitconfig is now autogenerated
146
+ .gitconfig
151
147
152
- # Cython debug symbols
153
- cython_debug /
148
+ _docs
154
149
155
- # PyCharm
156
- # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157
- # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158
- # and can be added to the global gitignore or merged into this file. For a more nuclear
159
- # option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
- # .idea/
150
+ /.quarto /
0 commit comments