Simonlob commited on
Commit
cd851cb
1 Parent(s): 78c6bc3

Update .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +34 -35
.gitignore CHANGED
@@ -1,3 +1,5 @@
 
 
1
  # Byte-compiled / optimized / DLL files
2
  __pycache__/
3
  *.py[cod]
@@ -20,7 +22,6 @@ parts/
20
  sdist/
21
  var/
22
  wheels/
23
- pip-wheel-metadata/
24
  share/python-wheels/
25
  *.egg-info/
26
  .installed.cfg
@@ -50,6 +51,7 @@ coverage.xml
50
  *.py,cover
51
  .hypothesis/
52
  .pytest_cache/
 
53
 
54
  # Translations
55
  *.mo
@@ -72,6 +74,7 @@ instance/
72
  docs/_build/
73
 
74
  # PyBuilder
 
75
  target/
76
 
77
  # Jupyter Notebook
@@ -82,7 +85,9 @@ profile_default/
82
  ipython_config.py
83
 
84
  # pyenv
85
- .python-version
 
 
86
 
87
  # pipenv
88
  # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -91,7 +96,22 @@ ipython_config.py
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
@@ -102,6 +122,7 @@ celerybeat.pid
102
  *.sage.py
103
 
104
  # Environments
 
105
  .venv
106
  env/
107
  venv/
@@ -127,37 +148,15 @@ dmypy.json
127
  # Pyre type checker
128
  .pyre/
129
 
130
- ### VisualStudioCode
131
- .vscode/*
132
- !.vscode/settings.json
133
- !.vscode/tasks.json
134
- !.vscode/launch.json
135
- !.vscode/extensions.json
136
- *.code-workspace
137
- **/.vscode
138
-
139
- # JetBrains
140
- .idea/
141
-
142
- # Data & Models
143
- *.h5
144
- *.tar
145
- *.tar.gz
146
-
147
- # Lightning-Hydra-Template
148
- configs/local/default.yaml
149
- /data/
150
- /logs/
151
- .env
152
-
153
- # Aim logging
154
- .aim
155
 
156
- # Cython complied files
157
- matcha/utils/monotonic_align/core.c
158
 
159
- # Ignoring hifigan checkpoint
160
- generator_v1
161
- g_02500000
162
- gradio_cached_examples/
163
- synth_output/
 
 
1
+ .DS_Store
2
+
3
  # Byte-compiled / optimized / DLL files
4
  __pycache__/
5
  *.py[cod]
 
22
  sdist/
23
  var/
24
  wheels/
 
25
  share/python-wheels/
26
  *.egg-info/
27
  .installed.cfg
 
51
  *.py,cover
52
  .hypothesis/
53
  .pytest_cache/
54
+ cover/
55
 
56
  # Translations
57
  *.mo
 
74
  docs/_build/
75
 
76
  # PyBuilder
77
+ .pybuilder/
78
  target/
79
 
80
  # Jupyter Notebook
 
85
  ipython_config.py
86
 
87
  # pyenv
88
+ # For a library or package, you might want to ignore these files since the code is
89
+ # intended to run in multiple environments; otherwise, check them in:
90
+ # .python-version
91
 
92
  # pipenv
93
  # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
 
96
  # install all needed dependencies.
97
  #Pipfile.lock
98
 
99
+ # poetry
100
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
101
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
102
+ # commonly ignored for libraries.
103
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
104
+ #poetry.lock
105
+
106
+ # pdm
107
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
108
+ #pdm.lock
109
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
110
+ # in version control.
111
+ # https://pdm.fming.dev/#use-with-ide
112
+ .pdm.toml
113
+
114
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
  __pypackages__/
116
 
117
  # Celery stuff
 
122
  *.sage.py
123
 
124
  # Environments
125
+ .env
126
  .venv
127
  env/
128
  venv/
 
148
  # Pyre type checker
149
  .pyre/
150
 
151
+ # pytype static type analyzer
152
+ .pytype/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
153
 
154
+ # Cython debug symbols
155
+ cython_debug/
156
 
157
+ # PyCharm
158
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
161
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
+ #.idea/