Skip to content

Commit c51bc3a

Browse files
committed
Update dependencies
1 parent 5a4fb5a commit c51bc3a

File tree

2 files changed

+12
-1531
lines changed

2 files changed

+12
-1531
lines changed

.gitignore

Lines changed: 12 additions & 188 deletions
Original file line numberDiff line numberDiff line change
@@ -1,190 +1,14 @@
1-
2-
### macOS ###
3-
# General
4-
.DS_Store
5-
.AppleDouble
6-
.LSOverride
7-
8-
# Icon must end with two \r
9-
Icon
10-
11-
# Thumbnails
12-
._*
13-
14-
# Files that might appear in the root of a volume
15-
.DocumentRevisions-V100
16-
.fseventsd
17-
.Spotlight-V100
18-
.TemporaryItems
19-
.Trashes
20-
.VolumeIcon.icns
21-
.com.apple.timemachine.donotpresent
22-
23-
# Directories potentially created on remote AFP share
24-
.AppleDB
25-
.AppleDesktop
26-
Network Trash Folder
27-
Temporary Items
28-
.apdisk
29-
30-
### Python ###
31-
# Byte-compiled / optimized / DLL files
32-
__pycache__/
33-
*.py[cod]
34-
*$py.class
35-
36-
# C extensions
37-
*.so
38-
39-
# Distribution / packaging
40-
.Python
41-
build/
42-
develop-eggs/
43-
dist/
44-
downloads/
45-
eggs/
46-
.eggs/
47-
parts/
48-
sdist/
49-
var/
50-
wheels/
51-
pip-wheel-metadata/
52-
share/python-wheels/
53-
*.egg-info/
54-
.installed.cfg
55-
*.egg
56-
MANIFEST
57-
58-
# PyInstaller
59-
*.manifest
60-
*.spec
61-
62-
# Installer logs
63-
pip-log.txt
64-
pip-delete-this-directory.txt
65-
66-
# Unit test / coverage reports
67-
htmlcov/
68-
.tox/
69-
.nox/
1+
*.pyc
2+
env*
3+
.mypy_cache
4+
.vscode
5+
.idea
6+
poetry.lock
7+
dist
8+
htmlcov
9+
*.egg-info
7010
.coverage
71-
.coverage.*
72-
.cache
73-
nosetests.xml
7411
coverage.xml
75-
*.cover
76-
*.py,cover
77-
.hypothesis/
78-
.pytest_cache/
79-
pytestdebug.log
80-
81-
# Translations
82-
*.mo
83-
*.pot
84-
85-
# Django stuff:
86-
*.log
87-
local_settings.py
88-
db.sqlite3
89-
db.sqlite3-journal
90-
91-
# Flask stuff:
92-
instance/
93-
.webassets-cache
94-
95-
# Scrapy stuff:
96-
.scrapy
97-
98-
# Sphinx documentation
99-
docs/_build/
100-
doc/_build/
101-
102-
# PyBuilder
103-
target/
104-
105-
# Jupyter Notebook
106-
.ipynb_checkpoints
107-
108-
# IPython
109-
profile_default/
110-
ipython_config.py
111-
112-
# pyenv
113-
.python-version
114-
115-
# pipenv
116-
# Pipfile.lock
117-
118-
# poetry
119-
# poetry.lock
120-
121-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
122-
__pypackages__/
123-
124-
# Celery stuff
125-
celerybeat-schedule
126-
celerybeat.pid
127-
128-
# SageMath parsed files
129-
*.sage.py
130-
131-
# Environments
132-
*.env*
133-
.env/
134-
.venv/
135-
env/
136-
venv/
137-
ENV/
138-
env.bak/
139-
venv.bak/
140-
pythonenv*
141-
142-
# Spyder project settings
143-
.spyderproject
144-
.spyproject
145-
146-
# Rope project settings
147-
.ropeproject
148-
149-
# mkdocs documentation
150-
/public
151-
/site
152-
153-
# mypy
154-
.mypy_cache/
155-
.dmypy.json
156-
dmypy.json
157-
158-
# Pyre type checker
159-
.pyre/
160-
161-
# pytype static type analyzer
162-
.pytype/
163-
164-
# operating system-related files
165-
# *.DS_Store
166-
Thumbs.db
167-
168-
# profiling data
169-
.prof
170-
171-
### VirtualEnv ###
172-
# Virtualenv
173-
[Bb]in
174-
[Ii]nclude
175-
[Ll]ib
176-
[Ll]ib64
177-
[Ll]ocal
178-
pyvenv.cfg
179-
.venv
180-
pip-selfcheck.json
181-
182-
### VisualStudioCode ###
183-
*.code-workspace
184-
.vscode/*
185-
!.vscode/tasks.json
186-
!.vscode/launch.json
187-
.history
188-
.ionide
189-
190-
.idea/
12+
site
13+
*.db
14+
.cache

0 commit comments

Comments
 (0)