Update .gitignore to remove __pycache__/ (#1127)

This commit is contained in:
Christian Clauss 2019-08-17 00:46:33 +02:00 committed by GitHub
parent 5bdcd4836c
commit a18a8fe2b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
.gitignore vendored
View File

@ -7,9 +7,7 @@ __pycache__/
*.so *.so
# Distribution / packaging # Distribution / packaging
.vscode/
.Python .Python
env/
build/ build/
develop-eggs/ develop-eggs/
dist/ dist/
@ -21,9 +19,11 @@ lib64/
parts/ parts/
sdist/ sdist/
var/ var/
wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
MANIFEST
# PyInstaller # PyInstaller
# Usually these files are written by a python script from a template # Usually these files are written by a python script from a template
@ -43,8 +43,9 @@ htmlcov/
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover *.cover
.hypothesis/ .hypothesis/
.pytest_cache/
# Translations # Translations
*.mo *.mo
@ -53,6 +54,7 @@ coverage.xml
# Django stuff: # Django stuff:
*.log *.log
local_settings.py local_settings.py
db.sqlite3
# Flask stuff: # Flask stuff:
instance/ instance/
@ -67,7 +69,7 @@ docs/_build/
# PyBuilder # PyBuilder
target/ target/
# IPython Notebook # Jupyter Notebook
.ipynb_checkpoints .ipynb_checkpoints
# pyenv # pyenv
@ -76,18 +78,32 @@ target/
# celery beat schedule file # celery beat schedule file
celerybeat-schedule celerybeat-schedule
# dotenv # SageMath parsed files
.env *.sage.py
# virtualenv # Environments
.env
.venv
env/
venv/ venv/
ENV/ ENV/
env.bak/
venv.bak/
# Spyder project settings # Spyder project settings
.spyderproject .spyderproject
.spyproject
# Rope project settings # Rope project settings
.ropeproject .ropeproject
.idea
# mkdocs documentation
/site
# mypy
.mypy_cache/
.DS_Store .DS_Store
.idea
.try .try
.vscode/