poetry icon indicating copy to clipboard operation
poetry copied to clipboard

feat: drop support for Python 3.8

Open finswimmer opened this issue 1 year ago • 1 comments

Python 3.8 will be EOL on October. Let's drop the support than for running Poetry itself with it.

finswimmer avatar Sep 17 '24 04:09 finswimmer

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)

TheSven73 avatar Sep 20 '24 19:09 TheSven73

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.

github-actions[bot] avatar Nov 20 '24 00:11 github-actions[bot]