poetry
poetry copied to clipboard
feat: drop support for Python 3.8
Python 3.8 will be EOL on October. Let's drop the support than for running Poetry itself with it.
From py3.9 onwards, we can make some executor.py code simpler:
if self._shutdown:
# Cancelling further tasks from being executed
[task.cancel() for task in tasks]
self._executor.shutdown(wait=True)
=>
if self._shutdown:
self._executor.shutdown(wait=True, cancel_futures=True)
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.