Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#13643 Fix deprecation warning for `pkg_resources` dependency by changing to `packaging`

Merged
Ghost merged 1 commits into Ultralytics:master from ultralytics:fix-pkg-resource-dep
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
  1. # Repo-specific DockerIgnore -------------------------------------------------------------------------------------------
  2. .git
  3. .cache
  4. .idea
  5. runs
  6. output
  7. coco
  8. storage.googleapis.com
  9. data/samples/*
  10. **/results*.csv
  11. *.jpg
  12. # Neural Network weights -----------------------------------------------------------------------------------------------
  13. **/*.pt
  14. **/*.pth
  15. **/*.onnx
  16. **/*.engine
  17. **/*.mlmodel
  18. **/*.torchscript
  19. **/*.torchscript.pt
  20. **/*.tflite
  21. **/*.h5
  22. **/*.pb
  23. *_saved_model/
  24. *_web_model/
  25. *_openvino_model/
  26. # Below Copied From .gitignore -----------------------------------------------------------------------------------------
  27. # Below Copied From .gitignore -----------------------------------------------------------------------------------------
  28. # GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
  29. # Byte-compiled / optimized / DLL files
  30. __pycache__/
  31. *.py[cod]
  32. *$py.class
  33. # C extensions
  34. *.so
  35. # Distribution / packaging
  36. .Python
  37. env/
  38. build/
  39. develop-eggs/
  40. dist/
  41. downloads/
  42. eggs/
  43. .eggs/
  44. lib/
  45. lib64/
  46. parts/
  47. sdist/
  48. var/
  49. wheels/
  50. *.egg-info/
  51. wandb/
  52. .installed.cfg
  53. *.egg
  54. # PyInstaller
  55. # Usually these files are written by a python script from a template
  56. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  57. *.manifest
  58. *.spec
  59. # Installer logs
  60. pip-log.txt
  61. pip-delete-this-directory.txt
  62. # Unit test / coverage reports
  63. htmlcov/
  64. .tox/
  65. .coverage
  66. .coverage.*
  67. .cache
  68. nosetests.xml
  69. coverage.xml
  70. *.cover
  71. .hypothesis/
  72. # Translations
  73. *.mo
  74. *.pot
  75. # Django stuff:
  76. *.log
  77. local_settings.py
  78. # Flask stuff:
  79. instance/
  80. .webassets-cache
  81. # Scrapy stuff:
  82. .scrapy
  83. # Sphinx documentation
  84. docs/_build/
  85. # PyBuilder
  86. target/
  87. # Jupyter Notebook
  88. .ipynb_checkpoints
  89. # pyenv
  90. .python-version
  91. # celery beat schedule file
  92. celerybeat-schedule
  93. # SageMath parsed files
  94. *.sage.py
  95. # dotenv
  96. .env
  97. # virtualenv
  98. .venv*
  99. venv*/
  100. ENV*/
  101. # Spyder project settings
  102. .spyderproject
  103. .spyproject
  104. # Rope project settings
  105. .ropeproject
  106. # mkdocs documentation
  107. /site
  108. # mypy
  109. .mypy_cache/
  110. # https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
  111. # General
  112. .DS_Store
  113. .AppleDouble
  114. .LSOverride
  115. # Icon must end with two \r
  116. Icon
  117. Icon?
  118. # Thumbnails
  119. ._*
  120. # Files that might appear in the root of a volume
  121. .DocumentRevisions-V100
  122. .fseventsd
  123. .Spotlight-V100
  124. .TemporaryItems
  125. .Trashes
  126. .VolumeIcon.icns
  127. .com.apple.timemachine.donotpresent
  128. # Directories potentially created on remote AFP share
  129. .AppleDB
  130. .AppleDesktop
  131. Network Trash Folder
  132. Temporary Items
  133. .apdisk
  134. # https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
  135. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  136. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  137. # User-specific stuff:
  138. .idea/*
  139. .idea/**/workspace.xml
  140. .idea/**/tasks.xml
  141. .idea/dictionaries
  142. .html # Bokeh Plots
  143. .pg # TensorFlow Frozen Graphs
  144. .avi # videos
  145. # Sensitive or high-churn files:
  146. .idea/**/dataSources/
  147. .idea/**/dataSources.ids
  148. .idea/**/dataSources.local.xml
  149. .idea/**/sqlDataSources.xml
  150. .idea/**/dynamic.xml
  151. .idea/**/uiDesigner.xml
  152. # Gradle:
  153. .idea/**/gradle.xml
  154. .idea/**/libraries
  155. # CMake
  156. cmake-build-debug/
  157. cmake-build-release/
  158. # Mongo Explorer plugin:
  159. .idea/**/mongoSettings.xml
  160. ## File-based project format:
  161. *.iws
  162. ## Plugin-specific files:
  163. # IntelliJ
  164. out/
  165. # mpeltonen/sbt-idea plugin
  166. .idea_modules/
  167. # JIRA plugin
  168. atlassian-ide-plugin.xml
  169. # Cursive Clojure plugin
  170. .idea/replstate.xml
  171. # Crashlytics plugin (for Android Studio and IntelliJ)
  172. com_crashlytics_export_strings.xml
  173. crashlytics.properties
  174. crashlytics-build.properties
  175. fabric.properties
Discard
Tip!

Press p or to see the previous file or, n or to see the next file