Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use sysconfig instead of distutils for Python 3.10 compatability #2100

Merged
merged 3 commits into from
Jul 13, 2021

Conversation

9999years
Copy link

  • distutils is deprecated in Python 3.10 and slated for removal in Python 3.12
  • sysconfig provides the same functionality

This is causing a bunch of warnings when running tox under Python 3.10:

> poetry310 run tox -e py310 --recreate
/my-venv-dir/lib/python3.10/site-packages/tox/helper/get_site_package_dir.py:3: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
  import distutils.sysconfig
/my-venv-dir/lib/python3.10/site-packages/tox/helper/get_site_package_dir.py:3: DeprecationWarning: The distutils.sysconfig module is deprecated, use sysconfig instead
  import distutils.sysconfig
/my-venv-dir/lib/python3.10/site-packages/tox/helper/get_site_package_dir.py:3: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
  import distutils.sysconfig
/my-venv-dir/lib/python3.10/site-packages/tox/helper/get_site_package_dir.py:3: DeprecationWarning: The distutils.sysconfig module is deprecated, use sysconfig instead
  import distutils.sysconfig
.package recreate: my-repo-path/.tox/.package

- `distutils` is deprecated in Python 3.10 and slated for removal in
  Python 3.12
- `sysconfig` provides the same functionality
@gaborbernat
Copy link
Member

  • distutils is deprecated in Python 3.10 and slated for removal in Python 3.12

Indeed.

  • sysconfig provides the same functionality

Sadly this is not true. Especially not true on Linux distributions where the OS patches often distutils, but not sysconfig. While we might need to do this the change itself will break people, so likely better done in a new major version 🤔

@9999years
Copy link
Author

likely better done in a new major version

OK, let's get it in for 4.0 then. How do we move forward with that?

@9999years
Copy link
Author

Especially not true on Linux distributions where the OS patches often distutils, but not sysconfig.

I'm curious about this. Here's a test:

import distutils.sysconfig
import sysconfig


def check_purelib_path(prefix: str):
    """Assert that two methods of getting the Python package installation path
    (``distutils.sysconfig.get_python_lib`` and ``sysconfig.get_path``) return
    the same result.
    """
    distutils_path = distutils.sysconfig.get_python_lib(prefix=prefix)
    sysconfig_path = sysconfig.get_path("purelib", vars={"base": prefix})
    assert distutils_path == sysconfig_path, f"{distutils_path} != {sysconfig_path}"

Do you know of any distributions where check_purelib_path("...") fails in general?

I discovered these edge cases:

distutils.sysconfig.get_python_lib(prefix="/")    == "/lib/python3.9/site-packages"
sysconfig.get_path("purelib", vars={"base": "/"}) == "//lib/python3.9/site-packages"

distutils.sysconfig.get_python_lib(prefix="")     == "lib/python3.9/site-packages"
sysconfig.get_path("purelib", vars={"base": ""})  == "/lib/python3.9/site-packages"

@gaborbernat
Copy link
Member

Do you know of any distributions where check_purelib_path("...") fails in general?

Can't recall exactly now, but now we've run into this issue on some Debian derivatives.

Copy link
Member

@gaborbernat gaborbernat left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's see if this will cause any major issues 🤷

@gaborbernat gaborbernat merged commit 4c0e09b into tox-dev:master Jul 13, 2021
@asottile
Copy link
Contributor

Do you know of any distributions where check_purelib_path("...") fails in general?

Can't recall exactly now, but now we've run into this issue on some Debian derivatives.

yeah I think this is going to break on installed-to-system debian-derivatives

specifically:

$ python3 t.py 
Traceback (most recent call last):
  File "t.py", line 14, in <module>
    check_purelib_path("/usr")
  File "t.py", line 12, in check_purelib_path
    assert distutils_path == sysconfig_path, f"{distutils_path} != {sysconfig_path}"
AssertionError: /usr/lib/python3/dist-packages != /usr/lib/python3.8/site-packages
$ cat t.py 
import distutils.sysconfig
import sysconfig


def check_purelib_path(prefix: str):
    """Assert that two methods of getting the Python package installation path
    (``distutils.sysconfig.get_python_lib`` and ``sysconfig.get_path``) return
    the same result.
    """
    distutils_path = distutils.sysconfig.get_python_lib(prefix=prefix)
    sysconfig_path = sysconfig.get_path("purelib", vars={"base": prefix})
    assert distutils_path == sysconfig_path, f"{distutils_path} != {sysconfig_path}"

check_purelib_path("/usr")

@9999years
Copy link
Author

@asottile Is there any way to resolve this other than getting debian maintainers to fix their patches / do you have a workaround? I don't have a debian system to test on.

@asottile
Copy link
Contributor

not that I know of

@9999years 9999years deleted the remove-distutils branch July 13, 2021 15:19
@gaborbernat
Copy link
Member

Went with this more forgiving fix in the end 91dfd3e

@gaborbernat
Copy link
Member

Released via https://pypi.org/project/tox/3.24.0/

bors bot added a commit to meilisearch/meilisearch-python that referenced this pull request Aug 17, 2021
299: Bump tox from 3.23.1 to 3.24.1 r=alallema a=dependabot[bot]

Bumps [tox](https://github.com/tox-dev/tox) from 3.23.1 to 3.24.1.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/tox-dev/tox/blob/master/docs/changelog.rst">tox's changelog</a>.</em></p>
<blockquote>
<h2>v3.24.1 (2021-07-31)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li><code>get_requires_for_build_sdist</code> hook (PEP 517) is assumed to return an empty list if left unimplemented by the backend build system - by :user:<code>oczkoisse</code>
<code>[#2130](tox-dev/tox#2130) &lt;https://github.com/tox-dev/tox/issues/2130&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>The documentation of <code>install_command</code> now also mentions that you can provide arbitrary commands - by :user:<code>jugmac00</code>
<code>[#2081](tox-dev/tox#2081) &lt;https://github.com/tox-dev/tox/issues/2081&gt;</code>_</li>
</ul>
<h2>v3.24.0 (2021-07-14)</h2>
<p>Bugfixes
^^^^^^^^</p>
<ul>
<li><code>--devenv</code> no longer modifies the directory in which the <code>.tox</code> environment is provisioned - by :user:<code>isaac-ped</code>
<code>[#2065](tox-dev/tox#2065) &lt;https://github.com/tox-dev/tox/issues/2065&gt;</code>_</li>
<li>Fix show config when the package names are not in canonical form - by :user:<code>gaborbernat</code>.
<code>[#2103](tox-dev/tox#2103) &lt;https://github.com/tox-dev/tox/issues/2103&gt;</code>_</li>
</ul>
<p>Documentation
^^^^^^^^^^^^^</p>
<ul>
<li>Extended environment variables section - by :user:<code>majiang</code>
<code>[#2036](tox-dev/tox#2036) &lt;https://github.com/tox-dev/tox/issues/2036&gt;</code>_</li>
</ul>
<p>Miscellaneous
^^^^^^^^^^^^^</p>
<ul>
<li><code>tox</code> no longer shows deprecation warnings for <code>distutils.sysconfig</code> on
Python 3.10 - by :user:<code>9999years</code>
<code>[#2100](tox-dev/tox#2100) &lt;https://github.com/tox-dev/tox/issues/2100&gt;</code>_</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/tox-dev/tox/commit/80918013ac88335331cc5c9b09f2912dad41b63a"><code>8091801</code></a> release 3.24.1</li>
<li><a href="https://github.com/tox-dev/tox/commit/db5861cc7a6cb9d7479116077065423c8d358218"><code>db5861c</code></a> Alow backend build system to omit <code>get_requires_for_build_sdist</code> hook (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2131">#2131</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/a61a6b6bf8713f35e560a2449480a8ea5721bad7"><code>a61a6b6</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2119">#2119</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/62f923f1ff2d4c0260cc804fb6723a6655df7255"><code>62f923f</code></a> Update poetry link</li>
<li><a href="https://github.com/tox-dev/tox/commit/20d0646554db9d503afe5b140518cbcb95c2c4de"><code>20d0646</code></a> improve documentation for <code>install_command</code> (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2111">#2111</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/b35565a2ee0bfce11e139a163ca1fde3994455ed"><code>b35565a</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2110">#2110</a>)</li>
<li><a href="https://github.com/tox-dev/tox/commit/3c576a70a119fcb306b1f6e19b1faae4ee178dc4"><code>3c576a7</code></a> Fix misformed title in changelog</li>
<li><a href="https://github.com/tox-dev/tox/commit/7852011425de61cf57ba2c2d06a6c8a4cc12e060"><code>7852011</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/tox-dev/tox/issues/2105">#2105</a> from tox-dev/release-3.24.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/c2e2e3441af72b45a03d11589908762ab0204613"><code>c2e2e34</code></a> release 3.24.0</li>
<li><a href="https://github.com/tox-dev/tox/commit/91dfd3e8bdf95ca2992d675162619036345120d4"><code>91dfd3e</code></a> Add Python3.10 to CI and handle distutils deprecation</li>
<li>Additional commits viewable in <a href="https://github.com/tox-dev/tox/compare/3.23.1...3.24.1">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tox&package-manager=pip&previous-version=3.23.1&new-version=3.24.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants