Definition
Recipes13
- Upgrade to Python 3.9
- Replace
collectionsABC imports withcollections.abc - Replace
typing.Optional[X]withX | None - Replace
typing.Union[X, Y]withX | Y - Replace
threading.currentThread()withthreading.current_thread() - Replace
threading.activeCount()withthreading.active_count() - Replace
Condition.notifyAll()withCondition.notify_all() - Replace
Event.isSet()withEvent.is_set() - Replace
Thread.getName()withThread.name - Replace
Thread.setName()withThread.name = ... - Replace
Thread.isDaemon()withThread.daemon - Replace
Thread.setDaemon()withThread.daemon = ... - org.openrewrite.python.migrate.UpgradePythonVersionTo310
Usage
Run this recipe
In order to run Python recipes, you will need to use the Moderne CLI.
This recipe calls into other OpenRewrite packages as it runs, and the CLI needs every one of them in its marketplace. Once the CLI is installed, install all of the following:
RELEASE resolves to the newest release and LATEST to the newest build of any kind, including snapshots. Either one lets mod config recipes upgrade pull in later versions without editing this command; a pinned version stays where you put it.
- RELEASE
- LATEST
- Pinned version
Install the recipe packages
mod config recipes pip install openrewrite-migrate-python
mod config recipes jar install org.openrewrite.recipe:rewrite-migrate-python:RELEASE
mod config recipes jar install org.openrewrite:rewrite-python:RELEASE
Install the recipe packages
mod config recipes pip install openrewrite-migrate-python
mod config recipes jar install org.openrewrite.recipe:rewrite-migrate-python:LATEST
mod config recipes jar install org.openrewrite:rewrite-python:LATEST
Install the recipe packages
mod config recipes pip install openrewrite-migrate-python==0.12.0
mod config recipes jar install org.openrewrite.recipe:rewrite-migrate-python:0.12.0
mod config recipes jar install org.openrewrite:rewrite-python:8.90.1
Then, you can run the recipe via:
Run the recipe
mod run . --recipe org.openrewrite.python.migrate.UpgradeToPython310