Skip to content

Commit 07108e1

Browse files
committed
Use latest .gitignore.
1 parent 8a3b6cf commit 07108e1

File tree

1 file changed

+57
-6
lines changed

1 file changed

+57
-6
lines changed

Diff for: .gitignore

+57-6
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# Byte-compiled / optimized / DLL files
22
__pycache__/
33
*.py[cod]
4+
*$py.class
45

56
# C extensions
67
*.so
78

89
# Distribution / packaging
910
.Python
10-
env/
11-
venv/
12-
venv2/
13-
venv3/
1411
build/
1512
develop-eggs/
1613
dist/
1714
downloads/
1815
eggs/
16+
.eggs/
1917
lib/
2018
lib64/
2119
parts/
2220
sdist/
2321
var/
22+
wheels/
2423
*.egg-info/
2524
.installed.cfg
2625
*.egg
26+
MANIFEST
2727

2828
# PyInstaller
2929
# Usually these files are written by a python script from a template
@@ -38,23 +38,74 @@ pip-delete-this-directory.txt
3838
# Unit test / coverage reports
3939
htmlcov/
4040
.tox/
41+
.nox/
4142
.coverage
43+
.coverage.*
4244
.cache
4345
nosetests.xml
4446
coverage.xml
47+
*.cover
48+
.hypothesis/
49+
.pytest_cache/
4550

4651
# Translations
4752
*.mo
4853
*.pot
4954

5055
# Django stuff:
5156
*.log
57+
local_settings.py
58+
db.sqlite3
59+
60+
# Flask stuff:
61+
instance/
62+
.webassets-cache
63+
64+
# Scrapy stuff:
65+
.scrapy
5266

5367
# Sphinx documentation
5468
docs/_build/
5569

5670
# PyBuilder
5771
target/
5872

59-
# Intellij PyCharm
60-
.idea/
73+
# Jupyter Notebook
74+
.ipynb_checkpoints
75+
76+
# IPython
77+
profile_default/
78+
ipython_config.py
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
.dmypy.json
111+
dmypy.json

0 commit comments

Comments
 (0)