@@ -176,11 +176,14 @@ combination is:
176176 * - p3fmod_audio
177177 - Audio (including 3D audio) support using FMOD (note the licensing!)
178178 * - 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.
180181 * - 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.
182184 * - 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.
184187
185188Note that some plug-ins use third-party libraries that may have different
186189licensing terms from Panda3D. More information about these libraries can be
@@ -198,17 +201,17 @@ versions. The default set is as follows:
198201
199202.. code-block :: python
200203
201- ' platforms' : [' manylinux2010_x86_64 ' , ' macosx_10_9_x86_64' , ' win_amd64' ],
204+ ' platforms' : [' manylinux2014_x86_64 ' , ' macosx_10_9_x86_64' , ' win_amd64' ],
202205
203206 Sometimes, it is desirable to use third-party packages that do not provide
204207wheels 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
207210increase these versions:
208211
209212.. code-block :: python
210213
211- ' platforms' : [' manylinux2014_x86_64' , ' macosx_10_9_x86_64 ' , ' win_amd64' ],
214+ ' platforms' : [' manylinux2014_x86_64' , ' macosx_10_13_x86_64 ' , ' win_amd64' ],
212215
213216 .. list-table :: List of Platforms
214217 :widths: 20, 80
@@ -217,10 +220,14 @@ increase these versions:
217220 - 64-bit Windows systems (including Intel x64 processors).
218221 * - win32
219222 - 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.
224231 * - macosx_10_9_x86_64
225232 - Target Intel Macs running OS X Mavericks or higher. Recommended.
226233 * - android
0 commit comments