ivangabriele commited on
Commit
48ee5ae
·
verified ·
1 Parent(s): e2dce86

ci(git): ignore models/

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