Skip to content

Commit d66d73b

Browse files
committed
update .gitignore
1 parent a246211 commit d66d73b

File tree

1 file changed

+19
-12
lines changed

1 file changed

+19
-12
lines changed

.gitignore

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Created by https://www.gitignore.io/api/python
32

43
### Python ###
@@ -12,7 +11,6 @@ __pycache__/
1211

1312
# Distribution / packaging
1413
.Python
15-
env/
1614
build/
1715
develop-eggs/
1816
dist/
@@ -45,19 +43,16 @@ htmlcov/
4543
.coverage
4644
.coverage.*
4745
.cache
46+
.pytest_cache/
4847
nosetests.xml
4948
coverage.xml
50-
*,cover
49+
*.cover
5150
.hypothesis/
5251

5352
# Translations
5453
*.mo
5554
*.pot
5655

57-
# Django stuff:
58-
*.log
59-
local_settings.py
60-
6156
# Flask stuff:
6257
instance/
6358
.webassets-cache
@@ -78,20 +73,32 @@ target/
7873
.python-version
7974

8075
# celery beat schedule file
81-
celerybeat-schedule
76+
celerybeat-schedule.*
8277

83-
# dotenv
84-
.env
78+
# SageMath parsed files
79+
*.sage.py
8580

86-
# virtualenv
87-
.venv/
81+
# Environments
82+
.env
83+
.venv
84+
env/
8885
venv/
8986
ENV/
87+
env.bak/
88+
venv.bak/
9089

9190
# Spyder project settings
9291
.spyderproject
92+
.spyproject
9393

9494
# Rope project settings
9595
.ropeproject
9696

97+
# mkdocs documentation
98+
/site
99+
100+
# mypy
101+
.mypy_cache/
102+
103+
97104
# End of https://www.gitignore.io/api/python

0 commit comments

Comments
 (0)