@@ -176,11 +176,14 @@ combination is:
176
176
* - p3fmod_audio
177
177
- Audio (including 3D audio) support using FMOD (note the licensing!)
178
178
* - pandaegg
179
- - Enables support for reading .egg files (usually not necessary)
179
+ - Enables support for reading .egg files. Generally, you should not include
180
+ this, since .egg files are automatically converted to .bam during build.
180
181
* - p3ptloader
181
- - Adds support for additional model formats beyond BAM
182
+ - Adds support for additional model formats. You probably want to instead
183
+ add those model extensions to the ``bam-model-extensions `` list.
182
184
* - p3assimp
183
- - Adds support for additional model formats beyond BAM by using Assimp
185
+ - Adds support for additional model formats. You probably want to instead
186
+ add those model extensions to the ``bam-model-extensions `` list.
184
187
185
188
Note that some plug-ins use third-party libraries that may have different
186
189
licensing terms from Panda3D. More information about these libraries can be
@@ -198,17 +201,17 @@ versions. The default set is as follows:
198
201
199
202
.. code-block :: python
200
203
201
- ' platforms' : [' manylinux2010_x86_64 ' , ' macosx_10_9_x86_64' , ' win_amd64' ],
204
+ ' platforms' : [' manylinux2014_x86_64 ' , ' macosx_10_9_x86_64' , ' win_amd64' ],
202
205
203
206
Sometimes, it is desirable to use third-party packages that do not provide
204
207
wheels for a given platform. For example, a package may no longer publish wheels
205
- for a ``manylinux2010_x86_64 ``, but only for ``manylinux2014_x86_64 ``. If you
206
- wish to use this package, then you need to therefore set the platform tags to
208
+ for a ``macosx_10_9_x86_64 ``, but only for ``macosx_10_13_x86_64 ``. If you wish
209
+ to use this package, then you need to therefore set the platform tags to
207
210
increase these versions:
208
211
209
212
.. code-block :: python
210
213
211
- ' platforms' : [' manylinux2014_x86_64' , ' macosx_10_9_x86_64 ' , ' win_amd64' ],
214
+ ' platforms' : [' manylinux2014_x86_64' , ' macosx_10_13_x86_64 ' , ' win_amd64' ],
212
215
213
216
.. list-table :: List of Platforms
214
217
:widths: 20, 80
@@ -217,10 +220,14 @@ increase these versions:
217
220
- 64-bit Windows systems (including Intel x64 processors).
218
221
* - win32
219
222
- 32-bit Windows systems, rarely used nowadays.
220
- * - manylinux2010_x86_64
221
- - Target 64-bit Linux distributions more recent than (more or less) 2010.
222
- * - manylinux2010_i686
223
- - Target 32-bit Linux distributions more recent than (more or less) 2010.
223
+ * - manylinux2014_x86_64
224
+ - Target 64-bit Linux distributions more recent than (more or less) 2014.
225
+ * - manylinux2014_i686
226
+ - Target 32-bit Linux distributions more recent than (more or less) 2014.
227
+ * - linux_x86_64
228
+ - Target 64-bit Linux distributions, letting Panda decide which version.
229
+ * - linux_i686
230
+ - Target 32-bit Linux distributions, letting Panda decide which version.
224
231
* - macosx_10_9_x86_64
225
232
- Target Intel Macs running OS X Mavericks or higher. Recommended.
226
233
* - android
0 commit comments