@@ -234,14 +234,19 @@ creation according to their needs, the :class:`EnvBuilder` class.
|
234 | 234 | There is also a module-level convenience function: |
235 | 235 | |
236 | 236 | .. function:: create(env_dir, system_site_packages=False, clear=False, \ |
237 | | - symlinks=False, with_pip=False) |
| 237 | + symlinks=False, with_pip=False, prompt=None) |
238 | 238 | |
239 | 239 | Create an :class:`EnvBuilder` with the given keyword arguments, and call its |
240 | 240 | :meth:`~EnvBuilder.create` method with the *env_dir* argument. |
241 | 241 | |
| 242 | + .. versionadded:: 3.3 |
| 243 | + |
242 | 244 | .. versionchanged:: 3.4 |
243 | 245 | Added the ``with_pip`` parameter |
244 | 246 | |
| 247 | + .. versionchanged:: 3.6 |
| 248 | + Added the ``prompt`` parameter |
| 249 | + |
245 | 250 | An example of extending ``EnvBuilder`` |
246 | 251 | -------------------------------------- |
247 | 252 | |
|