Skip to content

Commit 2cb4a7c

Browse files
committed
Update .gitignore
1 parent fc40948 commit 2cb4a7c

File tree

1 file changed

+28
-4
lines changed

1 file changed

+28
-4
lines changed

.gitignore

+28-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ __pycache__/
88

99
# Distribution / packaging
1010
.Python
11-
env/
1211
build/
1312
develop-eggs/
1413
dist/
@@ -21,9 +20,12 @@ parts/
2120
sdist/
2221
var/
2322
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
2425
*.egg-info/
2526
.installed.cfg
2627
*.egg
28+
MANIFEST
2729

2830
# PyInstaller
2931
# Usually these files are written by a python script from a template
@@ -38,13 +40,15 @@ pip-delete-this-directory.txt
3840
# Unit test / coverage reports
3941
htmlcov/
4042
.tox/
43+
.nox/
4144
.coverage
4245
.coverage.*
4346
.cache
4447
nosetests.xml
4548
coverage.xml
4649
*.cover
4750
.hypothesis/
51+
.pytest_cache/
4852

4953
# Translations
5054
*.mo
@@ -53,6 +57,7 @@ coverage.xml
5357
# Django stuff:
5458
*.log
5559
local_settings.py
60+
db.sqlite3
5661

5762
# Flask stuff:
5863
instance/
@@ -70,22 +75,34 @@ target/
7075
# Jupyter Notebook
7176
.ipynb_checkpoints
7277

78+
# IPython
79+
profile_default/
80+
ipython_config.py
81+
7382
# pyenv
7483
.python-version
7584

85+
# pipenv
86+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
87+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
88+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
89+
# install all needed dependencies.
90+
#Pipfile.lock
91+
7692
# celery beat schedule file
7793
celerybeat-schedule
7894

7995
# SageMath parsed files
8096
*.sage.py
8197

82-
# dotenv
98+
# Environments
8399
.env
84-
85-
# virtualenv
86100
.venv
101+
env/
87102
venv/
88103
ENV/
104+
env.bak/
105+
venv.bak/
89106

90107
# Spyder project settings
91108
.spyderproject
@@ -99,5 +116,12 @@ ENV/
99116

100117
# mypy
101118
.mypy_cache/
119+
.dmypy.json
120+
dmypy.json
121+
122+
# Pyre type checker
123+
.pyre/
124+
125+
# custom
102126
TODO.txt
103127
test-coverage.sh

0 commit comments

Comments
 (0)