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

Installing maturin as a dependency of pyxel fails #1211

Closed
2 tasks
inktrap opened this issue Oct 24, 2022 · 10 comments · Fixed by #1212
Closed
2 tasks

Installing maturin as a dependency of pyxel fails #1211

inktrap opened this issue Oct 24, 2022 · 10 comments · Fixed by #1212

Comments

@inktrap
Copy link

inktrap commented Oct 24, 2022

Bug Description

Seems like there is only anyhow 1.0.62 available … but pip wants to install anyhow = "=1.0.65", which is weird because maturin's current Cargo.toml lists 1.0.63.

      Building wheels for collected packages: maturin, tomli
        Building wheel for maturin (pyproject.toml): started
        Building wheel for maturin (pyproject.toml): still running...
        Building wheel for maturin (pyproject.toml): finished with status 'error'
        error: subprocess-exited-with-error
      
        × Building wheel for maturin (pyproject.toml) did not run successfully.
        │ exit code: 1
        ╰─> [30 lines of output]
            running bdist_wheel
            running build
            running build_py
            creating build
            creating build/lib.linux-x86_64-cpython-310
            creating build/lib.linux-x86_64-cpython-310/maturin
            copying maturin/__init__.py -> build/lib.linux-x86_64-cpython-310/maturin
            copying maturin/import_hook.py -> build/lib.linux-x86_64-cpython-310/maturin
            copying maturin/__main__.py -> build/lib.linux-x86_64-cpython-310/maturin
            running egg_info
            creating maturin.egg-info
            writing maturin.egg-info/PKG-INFO
            writing dependency_links to maturin.egg-info/dependency_links.txt
            writing requirements to maturin.egg-info/requires.txt
            writing top-level names to maturin.egg-info/top_level.txt
            writing manifest file 'maturin.egg-info/SOURCES.txt'
            reading manifest file 'maturin.egg-info/SOURCES.txt'
            reading manifest template 'MANIFEST.in'
            writing manifest file 'maturin.egg-info/SOURCES.txt'
            warning: build_py: byte-compiling is disabled, skipping.
      
            running build_ext
            running build_rust
            cargo build --manifest-path Cargo.toml --message-format=json-render-diagnostics --release -v
                Updating crates.io index
            error: failed to select a version for the requirement `anyhow = "=1.0.65"`
            candidate versions found which didn't match: 1.0.62, 1.0.61, 1.0.60, ...
            location searched: crates.io index
            required by package `maturin v0.13.6 (/tmp/pip-install-kskwnk4_/maturin_e06fe5472ace4608bd24cc8dc6fca875)`
            error: `cargo build --manifest-path Cargo.toml --message-format=json-render-diagnostics --release -v` failed with code 101
            [end of output]

Pyxel's toml file:

[build-system]
requires = ["maturin>=0.13.3,<0.14"]
build-backend = "maturin"

Sorry if this is a problem in pyxel's toml file and not related to maturin.
If this is a problem on my end … if rust is installed, shouldn't there be a step that pulls in the updated list of dependencies?

Your Python version (python -V)

Python 3.10.7

Your pip version (pip -V)

pip 22.3

What bindings you're using

No response

Does cargo build work?

  • Yes, it works

If on windows, have you checked that you aren't accidentally using unix path (those with the forward slash /)?

  • Yes

Steps to Reproduce

  1. create a fresh virtual environment with Python 3.10.7 and pip 22.3 and activate it
  2. run pip install pyxel
@inktrap inktrap added the bug Something isn't working label Oct 24, 2022
@messense
Copy link
Member

What's your operating system and what's your rustc version? For macOS, Linux and Windows pyxel should have precompiled wheels you don't need to compile from source, so does maturin.

That said, cargo by default resolve dependencies by semver that's why it tries to use anyhow 1.0.65.

@messense messense removed the bug Something isn't working label Oct 25, 2022
messense added a commit to messense/maturin that referenced this issue Oct 25, 2022
messense added a commit to messense/maturin that referenced this issue Oct 25, 2022
messense added a commit to messense/maturin that referenced this issue Oct 25, 2022
@inktrap
Copy link
Author

inktrap commented Oct 25, 2022

Don't know if you still want to know:

Linux box 5.10.0-5-amd64 #1 SMP Debian 5.10.24-1 (2021-03-19) x86_64 GNU/Linux
rustc 1.61.0

So should I just try again and --locked solves it?

@messense
Copy link
Member

It kinda odd that your pip install pyxel did not pick up wheels, what's the output of pip debug --verbose?

@inktrap
Copy link
Author

inktrap commented Oct 25, 2022

Btw. I have pip aliased to python -m pip. My pip.conf only says:

[list]
format=columns

Maybe it has to do with --no-binary, but I didn't set it:

DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at pypa/pip#11453

pip debug --verbose --version
pip version: pip 22.3 from /home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip (python 3.10)
sys.version: 3.10.7 (main, Oct  1 2022, 04:31:04) [GCC 12.2.0]
sys.executable: /home/vh/meowser/.direnv/python-3.10/bin/python3
sys.getdefaultencoding: utf-8
sys.getfilesystemencoding: utf-8
locale.getpreferredencoding: UTF-8
sys.platform: linux
sys.implementation:
  name: cpython
'cert' config value: list, install
REQUESTS_CA_BUNDLE: None
CURL_CA_BUNDLE: None
pip._vendor.certifi.where(): /etc/ssl/certs/ca-certificates.crt
pip._vendor.DEBUNDLED: False
vendored library versions:
  CacheControl==0.12.11
  colorama==0.4.5
  distlib==0.3.6
  distro==1.7.0
  msgpack==1.0.4
  packaging==21.3
  pep517==0.13.0
  platformdirs==2.5.2
  pyparsing==3.0.9
  requests==2.28.1
  certifi==2022.09.24
  chardet==5.0.0
  idna==3.4
  urllib3==1.26.12
  rich==12.5.1 (Unable to locate actual module version, using vendor.txt specified version)
  pygments==2.13.0
  typing_extensions==4.4.0 (Unable to locate actual module version, using vendor.txt specified version)
  resolvelib==0.8.1
  setuptools==44.0.0 (Unable to locate actual module version, using vendor.txt specified version)
  six==1.16.0
  tenacity==8.1.0 (Unable to locate actual module version, using vendor.txt specified version)
  tomli==2.0.1
  webencodings==0.5.1 (Unable to locate actual module version, using vendor.txt specified version)
Compatible tags: 818
  cp310-cp310-manylinux_2_35_x86_64
  cp310-cp310-manylinux_2_34_x86_64
  cp310-cp310-manylinux_2_33_x86_64
  cp310-cp310-manylinux_2_32_x86_64
  cp310-cp310-manylinux_2_31_x86_64
  cp310-cp310-manylinux_2_30_x86_64
  cp310-cp310-manylinux_2_29_x86_64
  cp310-cp310-manylinux_2_28_x86_64
  cp310-cp310-manylinux_2_27_x86_64
  cp310-cp310-manylinux_2_26_x86_64
  cp310-cp310-manylinux_2_25_x86_64
  cp310-cp310-manylinux_2_24_x86_64
  cp310-cp310-manylinux_2_23_x86_64
  cp310-cp310-manylinux_2_22_x86_64
  cp310-cp310-manylinux_2_21_x86_64
  cp310-cp310-manylinux_2_20_x86_64
  cp310-cp310-manylinux_2_19_x86_64
  cp310-cp310-manylinux_2_18_x86_64
  cp310-cp310-manylinux_2_17_x86_64
  cp310-cp310-manylinux2014_x86_64
  cp310-cp310-manylinux_2_16_x86_64
  cp310-cp310-manylinux_2_15_x86_64
  cp310-cp310-manylinux_2_14_x86_64
  cp310-cp310-manylinux_2_13_x86_64
  cp310-cp310-manylinux_2_12_x86_64
  cp310-cp310-manylinux2010_x86_64
  cp310-cp310-manylinux_2_11_x86_64
  cp310-cp310-manylinux_2_10_x86_64
  cp310-cp310-manylinux_2_9_x86_64
  cp310-cp310-manylinux_2_8_x86_64
  cp310-cp310-manylinux_2_7_x86_64
  cp310-cp310-manylinux_2_6_x86_64
  cp310-cp310-manylinux_2_5_x86_64
  cp310-cp310-manylinux1_x86_64
  cp310-cp310-linux_x86_64
  cp310-abi3-manylinux_2_35_x86_64
  cp310-abi3-manylinux_2_34_x86_64
  cp310-abi3-manylinux_2_33_x86_64
  cp310-abi3-manylinux_2_32_x86_64
  cp310-abi3-manylinux_2_31_x86_64
  cp310-abi3-manylinux_2_30_x86_64
  cp310-abi3-manylinux_2_29_x86_64
  cp310-abi3-manylinux_2_28_x86_64
  cp310-abi3-manylinux_2_27_x86_64
  cp310-abi3-manylinux_2_26_x86_64
  cp310-abi3-manylinux_2_25_x86_64
  cp310-abi3-manylinux_2_24_x86_64
  cp310-abi3-manylinux_2_23_x86_64
  cp310-abi3-manylinux_2_22_x86_64
  cp310-abi3-manylinux_2_21_x86_64
  cp310-abi3-manylinux_2_20_x86_64
  cp310-abi3-manylinux_2_19_x86_64
  cp310-abi3-manylinux_2_18_x86_64
  cp310-abi3-manylinux_2_17_x86_64
  cp310-abi3-manylinux2014_x86_64
  cp310-abi3-manylinux_2_16_x86_64
  cp310-abi3-manylinux_2_15_x86_64
  cp310-abi3-manylinux_2_14_x86_64
  cp310-abi3-manylinux_2_13_x86_64
  cp310-abi3-manylinux_2_12_x86_64
  cp310-abi3-manylinux2010_x86_64
  cp310-abi3-manylinux_2_11_x86_64
  cp310-abi3-manylinux_2_10_x86_64
  cp310-abi3-manylinux_2_9_x86_64
  cp310-abi3-manylinux_2_8_x86_64
  cp310-abi3-manylinux_2_7_x86_64
  cp310-abi3-manylinux_2_6_x86_64
  cp310-abi3-manylinux_2_5_x86_64
  cp310-abi3-manylinux1_x86_64
  cp310-abi3-linux_x86_64
  cp310-none-manylinux_2_35_x86_64
  cp310-none-manylinux_2_34_x86_64
  cp310-none-manylinux_2_33_x86_64
  cp310-none-manylinux_2_32_x86_64
  cp310-none-manylinux_2_31_x86_64
  cp310-none-manylinux_2_30_x86_64
  cp310-none-manylinux_2_29_x86_64
  cp310-none-manylinux_2_28_x86_64
  cp310-none-manylinux_2_27_x86_64
  cp310-none-manylinux_2_26_x86_64
  cp310-none-manylinux_2_25_x86_64
  cp310-none-manylinux_2_24_x86_64
  cp310-none-manylinux_2_23_x86_64
  cp310-none-manylinux_2_22_x86_64
  cp310-none-manylinux_2_21_x86_64
  cp310-none-manylinux_2_20_x86_64
  cp310-none-manylinux_2_19_x86_64
  cp310-none-manylinux_2_18_x86_64
  cp310-none-manylinux_2_17_x86_64
  cp310-none-manylinux2014_x86_64
  cp310-none-manylinux_2_16_x86_64
  cp310-none-manylinux_2_15_x86_64
  cp310-none-manylinux_2_14_x86_64
  cp310-none-manylinux_2_13_x86_64
  cp310-none-manylinux_2_12_x86_64
  cp310-none-manylinux2010_x86_64
  cp310-none-manylinux_2_11_x86_64
  cp310-none-manylinux_2_10_x86_64
  cp310-none-manylinux_2_9_x86_64
  cp310-none-manylinux_2_8_x86_64
  cp310-none-manylinux_2_7_x86_64
  cp310-none-manylinux_2_6_x86_64
  cp310-none-manylinux_2_5_x86_64
  cp310-none-manylinux1_x86_64
  cp310-none-linux_x86_64
  cp39-abi3-manylinux_2_35_x86_64
  cp39-abi3-manylinux_2_34_x86_64
  cp39-abi3-manylinux_2_33_x86_64
  cp39-abi3-manylinux_2_32_x86_64
  cp39-abi3-manylinux_2_31_x86_64
  cp39-abi3-manylinux_2_30_x86_64
  cp39-abi3-manylinux_2_29_x86_64
  cp39-abi3-manylinux_2_28_x86_64
  cp39-abi3-manylinux_2_27_x86_64
  cp39-abi3-manylinux_2_26_x86_64
  cp39-abi3-manylinux_2_25_x86_64
  cp39-abi3-manylinux_2_24_x86_64
  cp39-abi3-manylinux_2_23_x86_64
  cp39-abi3-manylinux_2_22_x86_64
  cp39-abi3-manylinux_2_21_x86_64
  cp39-abi3-manylinux_2_20_x86_64
  cp39-abi3-manylinux_2_19_x86_64
  cp39-abi3-manylinux_2_18_x86_64
  cp39-abi3-manylinux_2_17_x86_64
  cp39-abi3-manylinux2014_x86_64
  cp39-abi3-manylinux_2_16_x86_64
  cp39-abi3-manylinux_2_15_x86_64
  cp39-abi3-manylinux_2_14_x86_64
  cp39-abi3-manylinux_2_13_x86_64
  cp39-abi3-manylinux_2_12_x86_64
  cp39-abi3-manylinux2010_x86_64
  cp39-abi3-manylinux_2_11_x86_64
  cp39-abi3-manylinux_2_10_x86_64
  cp39-abi3-manylinux_2_9_x86_64
  cp39-abi3-manylinux_2_8_x86_64
  cp39-abi3-manylinux_2_7_x86_64
  cp39-abi3-manylinux_2_6_x86_64
  cp39-abi3-manylinux_2_5_x86_64
  cp39-abi3-manylinux1_x86_64
  cp39-abi3-linux_x86_64
  cp38-abi3-manylinux_2_35_x86_64
  cp38-abi3-manylinux_2_34_x86_64
  cp38-abi3-manylinux_2_33_x86_64
  cp38-abi3-manylinux_2_32_x86_64
  cp38-abi3-manylinux_2_31_x86_64
  cp38-abi3-manylinux_2_30_x86_64
  cp38-abi3-manylinux_2_29_x86_64
  cp38-abi3-manylinux_2_28_x86_64
  cp38-abi3-manylinux_2_27_x86_64
  cp38-abi3-manylinux_2_26_x86_64
  cp38-abi3-manylinux_2_25_x86_64
  cp38-abi3-manylinux_2_24_x86_64
  cp38-abi3-manylinux_2_23_x86_64
  cp38-abi3-manylinux_2_22_x86_64
  cp38-abi3-manylinux_2_21_x86_64
  cp38-abi3-manylinux_2_20_x86_64
  cp38-abi3-manylinux_2_19_x86_64
  cp38-abi3-manylinux_2_18_x86_64
  cp38-abi3-manylinux_2_17_x86_64
  cp38-abi3-manylinux2014_x86_64
  cp38-abi3-manylinux_2_16_x86_64
  cp38-abi3-manylinux_2_15_x86_64
  cp38-abi3-manylinux_2_14_x86_64
  cp38-abi3-manylinux_2_13_x86_64
  cp38-abi3-manylinux_2_12_x86_64
  cp38-abi3-manylinux2010_x86_64
  cp38-abi3-manylinux_2_11_x86_64
  cp38-abi3-manylinux_2_10_x86_64
  cp38-abi3-manylinux_2_9_x86_64
  cp38-abi3-manylinux_2_8_x86_64
  cp38-abi3-manylinux_2_7_x86_64
  cp38-abi3-manylinux_2_6_x86_64
  cp38-abi3-manylinux_2_5_x86_64
  cp38-abi3-manylinux1_x86_64
  cp38-abi3-linux_x86_64
  cp37-abi3-manylinux_2_35_x86_64
  cp37-abi3-manylinux_2_34_x86_64
  cp37-abi3-manylinux_2_33_x86_64
  cp37-abi3-manylinux_2_32_x86_64
  cp37-abi3-manylinux_2_31_x86_64
  cp37-abi3-manylinux_2_30_x86_64
  cp37-abi3-manylinux_2_29_x86_64
  cp37-abi3-manylinux_2_28_x86_64
  cp37-abi3-manylinux_2_27_x86_64
  cp37-abi3-manylinux_2_26_x86_64
  cp37-abi3-manylinux_2_25_x86_64
  cp37-abi3-manylinux_2_24_x86_64
  cp37-abi3-manylinux_2_23_x86_64
  cp37-abi3-manylinux_2_22_x86_64
  cp37-abi3-manylinux_2_21_x86_64
  cp37-abi3-manylinux_2_20_x86_64
  cp37-abi3-manylinux_2_19_x86_64
  cp37-abi3-manylinux_2_18_x86_64
  cp37-abi3-manylinux_2_17_x86_64
  cp37-abi3-manylinux2014_x86_64
  cp37-abi3-manylinux_2_16_x86_64
  cp37-abi3-manylinux_2_15_x86_64
  cp37-abi3-manylinux_2_14_x86_64
  cp37-abi3-manylinux_2_13_x86_64
  cp37-abi3-manylinux_2_12_x86_64
  cp37-abi3-manylinux2010_x86_64
  cp37-abi3-manylinux_2_11_x86_64
  cp37-abi3-manylinux_2_10_x86_64
  cp37-abi3-manylinux_2_9_x86_64
  cp37-abi3-manylinux_2_8_x86_64
  cp37-abi3-manylinux_2_7_x86_64
  cp37-abi3-manylinux_2_6_x86_64
  cp37-abi3-manylinux_2_5_x86_64
  cp37-abi3-manylinux1_x86_64
  cp37-abi3-linux_x86_64
  cp36-abi3-manylinux_2_35_x86_64
  cp36-abi3-manylinux_2_34_x86_64
  cp36-abi3-manylinux_2_33_x86_64
  cp36-abi3-manylinux_2_32_x86_64
  cp36-abi3-manylinux_2_31_x86_64
  cp36-abi3-manylinux_2_30_x86_64
  cp36-abi3-manylinux_2_29_x86_64
  cp36-abi3-manylinux_2_28_x86_64
  cp36-abi3-manylinux_2_27_x86_64
  cp36-abi3-manylinux_2_26_x86_64
  cp36-abi3-manylinux_2_25_x86_64
  cp36-abi3-manylinux_2_24_x86_64
  cp36-abi3-manylinux_2_23_x86_64
  cp36-abi3-manylinux_2_22_x86_64
  cp36-abi3-manylinux_2_21_x86_64
  cp36-abi3-manylinux_2_20_x86_64
  cp36-abi3-manylinux_2_19_x86_64
  cp36-abi3-manylinux_2_18_x86_64
  cp36-abi3-manylinux_2_17_x86_64
  cp36-abi3-manylinux2014_x86_64
  cp36-abi3-manylinux_2_16_x86_64
  cp36-abi3-manylinux_2_15_x86_64
  cp36-abi3-manylinux_2_14_x86_64
  cp36-abi3-manylinux_2_13_x86_64
  cp36-abi3-manylinux_2_12_x86_64
  cp36-abi3-manylinux2010_x86_64
  cp36-abi3-manylinux_2_11_x86_64
  cp36-abi3-manylinux_2_10_x86_64
  cp36-abi3-manylinux_2_9_x86_64
  cp36-abi3-manylinux_2_8_x86_64
  cp36-abi3-manylinux_2_7_x86_64
  cp36-abi3-manylinux_2_6_x86_64
  cp36-abi3-manylinux_2_5_x86_64
  cp36-abi3-manylinux1_x86_64
  cp36-abi3-linux_x86_64
  cp35-abi3-manylinux_2_35_x86_64
  cp35-abi3-manylinux_2_34_x86_64
  cp35-abi3-manylinux_2_33_x86_64
  cp35-abi3-manylinux_2_32_x86_64
  cp35-abi3-manylinux_2_31_x86_64
  cp35-abi3-manylinux_2_30_x86_64
  cp35-abi3-manylinux_2_29_x86_64
  cp35-abi3-manylinux_2_28_x86_64
  cp35-abi3-manylinux_2_27_x86_64
  cp35-abi3-manylinux_2_26_x86_64
  cp35-abi3-manylinux_2_25_x86_64
  cp35-abi3-manylinux_2_24_x86_64
  cp35-abi3-manylinux_2_23_x86_64
  cp35-abi3-manylinux_2_22_x86_64
  cp35-abi3-manylinux_2_21_x86_64
  cp35-abi3-manylinux_2_20_x86_64
  cp35-abi3-manylinux_2_19_x86_64
  cp35-abi3-manylinux_2_18_x86_64
  cp35-abi3-manylinux_2_17_x86_64
  cp35-abi3-manylinux2014_x86_64
  cp35-abi3-manylinux_2_16_x86_64
  cp35-abi3-manylinux_2_15_x86_64
  cp35-abi3-manylinux_2_14_x86_64
  cp35-abi3-manylinux_2_13_x86_64
  cp35-abi3-manylinux_2_12_x86_64
  cp35-abi3-manylinux2010_x86_64
  cp35-abi3-manylinux_2_11_x86_64
  cp35-abi3-manylinux_2_10_x86_64
  cp35-abi3-manylinux_2_9_x86_64
  cp35-abi3-manylinux_2_8_x86_64
  cp35-abi3-manylinux_2_7_x86_64
  cp35-abi3-manylinux_2_6_x86_64
  cp35-abi3-manylinux_2_5_x86_64
  cp35-abi3-manylinux1_x86_64
  cp35-abi3-linux_x86_64
  cp34-abi3-manylinux_2_35_x86_64
  cp34-abi3-manylinux_2_34_x86_64
  cp34-abi3-manylinux_2_33_x86_64
  cp34-abi3-manylinux_2_32_x86_64
  cp34-abi3-manylinux_2_31_x86_64
  cp34-abi3-manylinux_2_30_x86_64
  cp34-abi3-manylinux_2_29_x86_64
  cp34-abi3-manylinux_2_28_x86_64
  cp34-abi3-manylinux_2_27_x86_64
  cp34-abi3-manylinux_2_26_x86_64
  cp34-abi3-manylinux_2_25_x86_64
  cp34-abi3-manylinux_2_24_x86_64
  cp34-abi3-manylinux_2_23_x86_64
  cp34-abi3-manylinux_2_22_x86_64
  cp34-abi3-manylinux_2_21_x86_64
  cp34-abi3-manylinux_2_20_x86_64
  cp34-abi3-manylinux_2_19_x86_64
  cp34-abi3-manylinux_2_18_x86_64
  cp34-abi3-manylinux_2_17_x86_64
  cp34-abi3-manylinux2014_x86_64
  cp34-abi3-manylinux_2_16_x86_64
  cp34-abi3-manylinux_2_15_x86_64
  cp34-abi3-manylinux_2_14_x86_64
  cp34-abi3-manylinux_2_13_x86_64
  cp34-abi3-manylinux_2_12_x86_64
  cp34-abi3-manylinux2010_x86_64
  cp34-abi3-manylinux_2_11_x86_64
  cp34-abi3-manylinux_2_10_x86_64
  cp34-abi3-manylinux_2_9_x86_64
  cp34-abi3-manylinux_2_8_x86_64
  cp34-abi3-manylinux_2_7_x86_64
  cp34-abi3-manylinux_2_6_x86_64
  cp34-abi3-manylinux_2_5_x86_64
  cp34-abi3-manylinux1_x86_64
  cp34-abi3-linux_x86_64
  cp33-abi3-manylinux_2_35_x86_64
  cp33-abi3-manylinux_2_34_x86_64
  cp33-abi3-manylinux_2_33_x86_64
  cp33-abi3-manylinux_2_32_x86_64
  cp33-abi3-manylinux_2_31_x86_64
  cp33-abi3-manylinux_2_30_x86_64
  cp33-abi3-manylinux_2_29_x86_64
  cp33-abi3-manylinux_2_28_x86_64
  cp33-abi3-manylinux_2_27_x86_64
  cp33-abi3-manylinux_2_26_x86_64
  cp33-abi3-manylinux_2_25_x86_64
  cp33-abi3-manylinux_2_24_x86_64
  cp33-abi3-manylinux_2_23_x86_64
  cp33-abi3-manylinux_2_22_x86_64
  cp33-abi3-manylinux_2_21_x86_64
  cp33-abi3-manylinux_2_20_x86_64
  cp33-abi3-manylinux_2_19_x86_64
  cp33-abi3-manylinux_2_18_x86_64
  cp33-abi3-manylinux_2_17_x86_64
  cp33-abi3-manylinux2014_x86_64
  cp33-abi3-manylinux_2_16_x86_64
  cp33-abi3-manylinux_2_15_x86_64
  cp33-abi3-manylinux_2_14_x86_64
  cp33-abi3-manylinux_2_13_x86_64
  cp33-abi3-manylinux_2_12_x86_64
  cp33-abi3-manylinux2010_x86_64
  cp33-abi3-manylinux_2_11_x86_64
  cp33-abi3-manylinux_2_10_x86_64
  cp33-abi3-manylinux_2_9_x86_64
  cp33-abi3-manylinux_2_8_x86_64
  cp33-abi3-manylinux_2_7_x86_64
  cp33-abi3-manylinux_2_6_x86_64
  cp33-abi3-manylinux_2_5_x86_64
  cp33-abi3-manylinux1_x86_64
  cp33-abi3-linux_x86_64
  cp32-abi3-manylinux_2_35_x86_64
  cp32-abi3-manylinux_2_34_x86_64
  cp32-abi3-manylinux_2_33_x86_64
  cp32-abi3-manylinux_2_32_x86_64
  cp32-abi3-manylinux_2_31_x86_64
  cp32-abi3-manylinux_2_30_x86_64
  cp32-abi3-manylinux_2_29_x86_64
  cp32-abi3-manylinux_2_28_x86_64
  cp32-abi3-manylinux_2_27_x86_64
  cp32-abi3-manylinux_2_26_x86_64
  cp32-abi3-manylinux_2_25_x86_64
  cp32-abi3-manylinux_2_24_x86_64
  cp32-abi3-manylinux_2_23_x86_64
  cp32-abi3-manylinux_2_22_x86_64
  cp32-abi3-manylinux_2_21_x86_64
  cp32-abi3-manylinux_2_20_x86_64
  cp32-abi3-manylinux_2_19_x86_64
  cp32-abi3-manylinux_2_18_x86_64
  cp32-abi3-manylinux_2_17_x86_64
  cp32-abi3-manylinux2014_x86_64
  cp32-abi3-manylinux_2_16_x86_64
  cp32-abi3-manylinux_2_15_x86_64
  cp32-abi3-manylinux_2_14_x86_64
  cp32-abi3-manylinux_2_13_x86_64
  cp32-abi3-manylinux_2_12_x86_64
  cp32-abi3-manylinux2010_x86_64
  cp32-abi3-manylinux_2_11_x86_64
  cp32-abi3-manylinux_2_10_x86_64
  cp32-abi3-manylinux_2_9_x86_64
  cp32-abi3-manylinux_2_8_x86_64
  cp32-abi3-manylinux_2_7_x86_64
  cp32-abi3-manylinux_2_6_x86_64
  cp32-abi3-manylinux_2_5_x86_64
  cp32-abi3-manylinux1_x86_64
  cp32-abi3-linux_x86_64
  py310-none-manylinux_2_35_x86_64
  py310-none-manylinux_2_34_x86_64
  py310-none-manylinux_2_33_x86_64
  py310-none-manylinux_2_32_x86_64
  py310-none-manylinux_2_31_x86_64
  py310-none-manylinux_2_30_x86_64
  py310-none-manylinux_2_29_x86_64
  py310-none-manylinux_2_28_x86_64
  py310-none-manylinux_2_27_x86_64
  py310-none-manylinux_2_26_x86_64
  py310-none-manylinux_2_25_x86_64
  py310-none-manylinux_2_24_x86_64
  py310-none-manylinux_2_23_x86_64
  py310-none-manylinux_2_22_x86_64
  py310-none-manylinux_2_21_x86_64
  py310-none-manylinux_2_20_x86_64
  py310-none-manylinux_2_19_x86_64
  py310-none-manylinux_2_18_x86_64
  py310-none-manylinux_2_17_x86_64
  py310-none-manylinux2014_x86_64
  py310-none-manylinux_2_16_x86_64
  py310-none-manylinux_2_15_x86_64
  py310-none-manylinux_2_14_x86_64
  py310-none-manylinux_2_13_x86_64
  py310-none-manylinux_2_12_x86_64
  py310-none-manylinux2010_x86_64
  py310-none-manylinux_2_11_x86_64
  py310-none-manylinux_2_10_x86_64
  py310-none-manylinux_2_9_x86_64
  py310-none-manylinux_2_8_x86_64
  py310-none-manylinux_2_7_x86_64
  py310-none-manylinux_2_6_x86_64
  py310-none-manylinux_2_5_x86_64
  py310-none-manylinux1_x86_64
  py310-none-linux_x86_64
  py3-none-manylinux_2_35_x86_64
  py3-none-manylinux_2_34_x86_64
  py3-none-manylinux_2_33_x86_64
  py3-none-manylinux_2_32_x86_64
  py3-none-manylinux_2_31_x86_64
  py3-none-manylinux_2_30_x86_64
  py3-none-manylinux_2_29_x86_64
  py3-none-manylinux_2_28_x86_64
  py3-none-manylinux_2_27_x86_64
  py3-none-manylinux_2_26_x86_64
  py3-none-manylinux_2_25_x86_64
  py3-none-manylinux_2_24_x86_64
  py3-none-manylinux_2_23_x86_64
  py3-none-manylinux_2_22_x86_64
  py3-none-manylinux_2_21_x86_64
  py3-none-manylinux_2_20_x86_64
  py3-none-manylinux_2_19_x86_64
  py3-none-manylinux_2_18_x86_64
  py3-none-manylinux_2_17_x86_64
  py3-none-manylinux2014_x86_64
  py3-none-manylinux_2_16_x86_64
  py3-none-manylinux_2_15_x86_64
  py3-none-manylinux_2_14_x86_64
  py3-none-manylinux_2_13_x86_64
  py3-none-manylinux_2_12_x86_64
  py3-none-manylinux2010_x86_64
  py3-none-manylinux_2_11_x86_64
  py3-none-manylinux_2_10_x86_64
  py3-none-manylinux_2_9_x86_64
  py3-none-manylinux_2_8_x86_64
  py3-none-manylinux_2_7_x86_64
  py3-none-manylinux_2_6_x86_64
  py3-none-manylinux_2_5_x86_64
  py3-none-manylinux1_x86_64
  py3-none-linux_x86_64
  py39-none-manylinux_2_35_x86_64
  py39-none-manylinux_2_34_x86_64
  py39-none-manylinux_2_33_x86_64
  py39-none-manylinux_2_32_x86_64
  py39-none-manylinux_2_31_x86_64
  py39-none-manylinux_2_30_x86_64
  py39-none-manylinux_2_29_x86_64
  py39-none-manylinux_2_28_x86_64
  py39-none-manylinux_2_27_x86_64
  py39-none-manylinux_2_26_x86_64
  py39-none-manylinux_2_25_x86_64
  py39-none-manylinux_2_24_x86_64
  py39-none-manylinux_2_23_x86_64
  py39-none-manylinux_2_22_x86_64
  py39-none-manylinux_2_21_x86_64
  py39-none-manylinux_2_20_x86_64
  py39-none-manylinux_2_19_x86_64
  py39-none-manylinux_2_18_x86_64
  py39-none-manylinux_2_17_x86_64
  py39-none-manylinux2014_x86_64
  py39-none-manylinux_2_16_x86_64
  py39-none-manylinux_2_15_x86_64
  py39-none-manylinux_2_14_x86_64
  py39-none-manylinux_2_13_x86_64
  py39-none-manylinux_2_12_x86_64
  py39-none-manylinux2010_x86_64
  py39-none-manylinux_2_11_x86_64
  py39-none-manylinux_2_10_x86_64
  py39-none-manylinux_2_9_x86_64
  py39-none-manylinux_2_8_x86_64
  py39-none-manylinux_2_7_x86_64
  py39-none-manylinux_2_6_x86_64
  py39-none-manylinux_2_5_x86_64
  py39-none-manylinux1_x86_64
  py39-none-linux_x86_64
  py38-none-manylinux_2_35_x86_64
  py38-none-manylinux_2_34_x86_64
  py38-none-manylinux_2_33_x86_64
  py38-none-manylinux_2_32_x86_64
  py38-none-manylinux_2_31_x86_64
  py38-none-manylinux_2_30_x86_64
  py38-none-manylinux_2_29_x86_64
  py38-none-manylinux_2_28_x86_64
  py38-none-manylinux_2_27_x86_64
  py38-none-manylinux_2_26_x86_64
  py38-none-manylinux_2_25_x86_64
  py38-none-manylinux_2_24_x86_64
  py38-none-manylinux_2_23_x86_64
  py38-none-manylinux_2_22_x86_64
  py38-none-manylinux_2_21_x86_64
  py38-none-manylinux_2_20_x86_64
  py38-none-manylinux_2_19_x86_64
  py38-none-manylinux_2_18_x86_64
  py38-none-manylinux_2_17_x86_64
  py38-none-manylinux2014_x86_64
  py38-none-manylinux_2_16_x86_64
  py38-none-manylinux_2_15_x86_64
  py38-none-manylinux_2_14_x86_64
  py38-none-manylinux_2_13_x86_64
  py38-none-manylinux_2_12_x86_64
  py38-none-manylinux2010_x86_64
  py38-none-manylinux_2_11_x86_64
  py38-none-manylinux_2_10_x86_64
  py38-none-manylinux_2_9_x86_64
  py38-none-manylinux_2_8_x86_64
  py38-none-manylinux_2_7_x86_64
  py38-none-manylinux_2_6_x86_64
  py38-none-manylinux_2_5_x86_64
  py38-none-manylinux1_x86_64
  py38-none-linux_x86_64
  py37-none-manylinux_2_35_x86_64
  py37-none-manylinux_2_34_x86_64
  py37-none-manylinux_2_33_x86_64
  py37-none-manylinux_2_32_x86_64
  py37-none-manylinux_2_31_x86_64
  py37-none-manylinux_2_30_x86_64
  py37-none-manylinux_2_29_x86_64
  py37-none-manylinux_2_28_x86_64
  py37-none-manylinux_2_27_x86_64
  py37-none-manylinux_2_26_x86_64
  py37-none-manylinux_2_25_x86_64
  py37-none-manylinux_2_24_x86_64
  py37-none-manylinux_2_23_x86_64
  py37-none-manylinux_2_22_x86_64
  py37-none-manylinux_2_21_x86_64
  py37-none-manylinux_2_20_x86_64
  py37-none-manylinux_2_19_x86_64
  py37-none-manylinux_2_18_x86_64
  py37-none-manylinux_2_17_x86_64
  py37-none-manylinux2014_x86_64
  py37-none-manylinux_2_16_x86_64
  py37-none-manylinux_2_15_x86_64
  py37-none-manylinux_2_14_x86_64
  py37-none-manylinux_2_13_x86_64
  py37-none-manylinux_2_12_x86_64
  py37-none-manylinux2010_x86_64
  py37-none-manylinux_2_11_x86_64
  py37-none-manylinux_2_10_x86_64
  py37-none-manylinux_2_9_x86_64
  py37-none-manylinux_2_8_x86_64
  py37-none-manylinux_2_7_x86_64
  py37-none-manylinux_2_6_x86_64
  py37-none-manylinux_2_5_x86_64
  py37-none-manylinux1_x86_64
  py37-none-linux_x86_64
  py36-none-manylinux_2_35_x86_64
  py36-none-manylinux_2_34_x86_64
  py36-none-manylinux_2_33_x86_64
  py36-none-manylinux_2_32_x86_64
  py36-none-manylinux_2_31_x86_64
  py36-none-manylinux_2_30_x86_64
  py36-none-manylinux_2_29_x86_64
  py36-none-manylinux_2_28_x86_64
  py36-none-manylinux_2_27_x86_64
  py36-none-manylinux_2_26_x86_64
  py36-none-manylinux_2_25_x86_64
  py36-none-manylinux_2_24_x86_64
  py36-none-manylinux_2_23_x86_64
  py36-none-manylinux_2_22_x86_64
  py36-none-manylinux_2_21_x86_64
  py36-none-manylinux_2_20_x86_64
  py36-none-manylinux_2_19_x86_64
  py36-none-manylinux_2_18_x86_64
  py36-none-manylinux_2_17_x86_64
  py36-none-manylinux2014_x86_64
  py36-none-manylinux_2_16_x86_64
  py36-none-manylinux_2_15_x86_64
  py36-none-manylinux_2_14_x86_64
  py36-none-manylinux_2_13_x86_64
  py36-none-manylinux_2_12_x86_64
  py36-none-manylinux2010_x86_64
  py36-none-manylinux_2_11_x86_64
  py36-none-manylinux_2_10_x86_64
  py36-none-manylinux_2_9_x86_64
  py36-none-manylinux_2_8_x86_64
  py36-none-manylinux_2_7_x86_64
  py36-none-manylinux_2_6_x86_64
  py36-none-manylinux_2_5_x86_64
  py36-none-manylinux1_x86_64
  py36-none-linux_x86_64
  py35-none-manylinux_2_35_x86_64
  py35-none-manylinux_2_34_x86_64
  py35-none-manylinux_2_33_x86_64
  py35-none-manylinux_2_32_x86_64
  py35-none-manylinux_2_31_x86_64
  py35-none-manylinux_2_30_x86_64
  py35-none-manylinux_2_29_x86_64
  py35-none-manylinux_2_28_x86_64
  py35-none-manylinux_2_27_x86_64
  py35-none-manylinux_2_26_x86_64
  py35-none-manylinux_2_25_x86_64
  py35-none-manylinux_2_24_x86_64
  py35-none-manylinux_2_23_x86_64
  py35-none-manylinux_2_22_x86_64
  py35-none-manylinux_2_21_x86_64
  py35-none-manylinux_2_20_x86_64
  py35-none-manylinux_2_19_x86_64
  py35-none-manylinux_2_18_x86_64
  py35-none-manylinux_2_17_x86_64
  py35-none-manylinux2014_x86_64
  py35-none-manylinux_2_16_x86_64
  py35-none-manylinux_2_15_x86_64
  py35-none-manylinux_2_14_x86_64
  py35-none-manylinux_2_13_x86_64
  py35-none-manylinux_2_12_x86_64
  py35-none-manylinux2010_x86_64
  py35-none-manylinux_2_11_x86_64
  py35-none-manylinux_2_10_x86_64
  py35-none-manylinux_2_9_x86_64
  py35-none-manylinux_2_8_x86_64
  py35-none-manylinux_2_7_x86_64
  py35-none-manylinux_2_6_x86_64
  py35-none-manylinux_2_5_x86_64
  py35-none-manylinux1_x86_64
  py35-none-linux_x86_64
  py34-none-manylinux_2_35_x86_64
  py34-none-manylinux_2_34_x86_64
  py34-none-manylinux_2_33_x86_64
  py34-none-manylinux_2_32_x86_64
  py34-none-manylinux_2_31_x86_64
  py34-none-manylinux_2_30_x86_64
  py34-none-manylinux_2_29_x86_64
  py34-none-manylinux_2_28_x86_64
  py34-none-manylinux_2_27_x86_64
  py34-none-manylinux_2_26_x86_64
  py34-none-manylinux_2_25_x86_64
  py34-none-manylinux_2_24_x86_64
  py34-none-manylinux_2_23_x86_64
  py34-none-manylinux_2_22_x86_64
  py34-none-manylinux_2_21_x86_64
  py34-none-manylinux_2_20_x86_64
  py34-none-manylinux_2_19_x86_64
  py34-none-manylinux_2_18_x86_64
  py34-none-manylinux_2_17_x86_64
  py34-none-manylinux2014_x86_64
  py34-none-manylinux_2_16_x86_64
  py34-none-manylinux_2_15_x86_64
  py34-none-manylinux_2_14_x86_64
  py34-none-manylinux_2_13_x86_64
  py34-none-manylinux_2_12_x86_64
  py34-none-manylinux2010_x86_64
  py34-none-manylinux_2_11_x86_64
  py34-none-manylinux_2_10_x86_64
  py34-none-manylinux_2_9_x86_64
  py34-none-manylinux_2_8_x86_64
  py34-none-manylinux_2_7_x86_64
  py34-none-manylinux_2_6_x86_64
  py34-none-manylinux_2_5_x86_64
  py34-none-manylinux1_x86_64
  py34-none-linux_x86_64
  py33-none-manylinux_2_35_x86_64
  py33-none-manylinux_2_34_x86_64
  py33-none-manylinux_2_33_x86_64
  py33-none-manylinux_2_32_x86_64
  py33-none-manylinux_2_31_x86_64
  py33-none-manylinux_2_30_x86_64
  py33-none-manylinux_2_29_x86_64
  py33-none-manylinux_2_28_x86_64
  py33-none-manylinux_2_27_x86_64
  py33-none-manylinux_2_26_x86_64
  py33-none-manylinux_2_25_x86_64
  py33-none-manylinux_2_24_x86_64
  py33-none-manylinux_2_23_x86_64
  py33-none-manylinux_2_22_x86_64
  py33-none-manylinux_2_21_x86_64
  py33-none-manylinux_2_20_x86_64
  py33-none-manylinux_2_19_x86_64
  py33-none-manylinux_2_18_x86_64
  py33-none-manylinux_2_17_x86_64
  py33-none-manylinux2014_x86_64
  py33-none-manylinux_2_16_x86_64
  py33-none-manylinux_2_15_x86_64
  py33-none-manylinux_2_14_x86_64
  py33-none-manylinux_2_13_x86_64
  py33-none-manylinux_2_12_x86_64
  py33-none-manylinux2010_x86_64
  py33-none-manylinux_2_11_x86_64
  py33-none-manylinux_2_10_x86_64
  py33-none-manylinux_2_9_x86_64
  py33-none-manylinux_2_8_x86_64
  py33-none-manylinux_2_7_x86_64
  py33-none-manylinux_2_6_x86_64
  py33-none-manylinux_2_5_x86_64
  py33-none-manylinux1_x86_64
  py33-none-linux_x86_64
  py32-none-manylinux_2_35_x86_64
  py32-none-manylinux_2_34_x86_64
  py32-none-manylinux_2_33_x86_64
  py32-none-manylinux_2_32_x86_64
  py32-none-manylinux_2_31_x86_64
  py32-none-manylinux_2_30_x86_64
  py32-none-manylinux_2_29_x86_64
  py32-none-manylinux_2_28_x86_64
  py32-none-manylinux_2_27_x86_64
  py32-none-manylinux_2_26_x86_64
  py32-none-manylinux_2_25_x86_64
  py32-none-manylinux_2_24_x86_64
  py32-none-manylinux_2_23_x86_64
  py32-none-manylinux_2_22_x86_64
  py32-none-manylinux_2_21_x86_64
  py32-none-manylinux_2_20_x86_64
  py32-none-manylinux_2_19_x86_64
  py32-none-manylinux_2_18_x86_64
  py32-none-manylinux_2_17_x86_64
  py32-none-manylinux2014_x86_64
  py32-none-manylinux_2_16_x86_64
  py32-none-manylinux_2_15_x86_64
  py32-none-manylinux_2_14_x86_64
  py32-none-manylinux_2_13_x86_64
  py32-none-manylinux_2_12_x86_64
  py32-none-manylinux2010_x86_64
  py32-none-manylinux_2_11_x86_64
  py32-none-manylinux_2_10_x86_64
  py32-none-manylinux_2_9_x86_64
  py32-none-manylinux_2_8_x86_64
  py32-none-manylinux_2_7_x86_64
  py32-none-manylinux_2_6_x86_64
  py32-none-manylinux_2_5_x86_64
  py32-none-manylinux1_x86_64
  py32-none-linux_x86_64
  py31-none-manylinux_2_35_x86_64
  py31-none-manylinux_2_34_x86_64
  py31-none-manylinux_2_33_x86_64
  py31-none-manylinux_2_32_x86_64
  py31-none-manylinux_2_31_x86_64
  py31-none-manylinux_2_30_x86_64
  py31-none-manylinux_2_29_x86_64
  py31-none-manylinux_2_28_x86_64
  py31-none-manylinux_2_27_x86_64
  py31-none-manylinux_2_26_x86_64
  py31-none-manylinux_2_25_x86_64
  py31-none-manylinux_2_24_x86_64
  py31-none-manylinux_2_23_x86_64
  py31-none-manylinux_2_22_x86_64
  py31-none-manylinux_2_21_x86_64
  py31-none-manylinux_2_20_x86_64
  py31-none-manylinux_2_19_x86_64
  py31-none-manylinux_2_18_x86_64
  py31-none-manylinux_2_17_x86_64
  py31-none-manylinux2014_x86_64
  py31-none-manylinux_2_16_x86_64
  py31-none-manylinux_2_15_x86_64
  py31-none-manylinux_2_14_x86_64
  py31-none-manylinux_2_13_x86_64
  py31-none-manylinux_2_12_x86_64
  py31-none-manylinux2010_x86_64
  py31-none-manylinux_2_11_x86_64
  py31-none-manylinux_2_10_x86_64
  py31-none-manylinux_2_9_x86_64
  py31-none-manylinux_2_8_x86_64
  py31-none-manylinux_2_7_x86_64
  py31-none-manylinux_2_6_x86_64
  py31-none-manylinux_2_5_x86_64
  py31-none-manylinux1_x86_64
  py31-none-linux_x86_64
  py30-none-manylinux_2_35_x86_64
  py30-none-manylinux_2_34_x86_64
  py30-none-manylinux_2_33_x86_64
  py30-none-manylinux_2_32_x86_64
  py30-none-manylinux_2_31_x86_64
  py30-none-manylinux_2_30_x86_64
  py30-none-manylinux_2_29_x86_64
  py30-none-manylinux_2_28_x86_64
  py30-none-manylinux_2_27_x86_64
  py30-none-manylinux_2_26_x86_64
  py30-none-manylinux_2_25_x86_64
  py30-none-manylinux_2_24_x86_64
  py30-none-manylinux_2_23_x86_64
  py30-none-manylinux_2_22_x86_64
  py30-none-manylinux_2_21_x86_64
  py30-none-manylinux_2_20_x86_64
  py30-none-manylinux_2_19_x86_64
  py30-none-manylinux_2_18_x86_64
  py30-none-manylinux_2_17_x86_64
  py30-none-manylinux2014_x86_64
  py30-none-manylinux_2_16_x86_64
  py30-none-manylinux_2_15_x86_64
  py30-none-manylinux_2_14_x86_64
  py30-none-manylinux_2_13_x86_64
  py30-none-manylinux_2_12_x86_64
  py30-none-manylinux2010_x86_64
  py30-none-manylinux_2_11_x86_64
  py30-none-manylinux_2_10_x86_64
  py30-none-manylinux_2_9_x86_64
  py30-none-manylinux_2_8_x86_64
  py30-none-manylinux_2_7_x86_64
  py30-none-manylinux_2_6_x86_64
  py30-none-manylinux_2_5_x86_64
  py30-none-manylinux1_x86_64
  py30-none-linux_x86_64
  cp310-none-any
  py310-none-any
  py3-none-any
  py39-none-any
  py38-none-any
  py37-none-any
  py36-none-any
  py35-none-any
  py34-none-any
  py33-none-any
  py32-none-any
  py31-none-any
  py30-none-any

@messense
Copy link
Member

The output looks fine, maybe you can debug it with pip install -vv pyxel.

@inktrap
Copy link
Author

inktrap commented Oct 25, 2022

Using pip 22.3 from /home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip (python 3.10)
Non-user install because user site-packages disabled
Created temporary directory: /tmp/pip-build-tracker-3trr3inu
Initialized build tracking at /tmp/pip-build-tracker-3trr3inu
Created build tracker: /tmp/pip-build-tracker-3trr3inu
Entered build tracker: /tmp/pip-build-tracker-3trr3inu
Created temporary directory: /tmp/pip-install-m7mze7x_
DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at https://github.com/pypa/pip/issues/11453
Created temporary directory: /tmp/pip-ephem-wheel-cache-p2_xr43a
1 location(s) to search for versions of pyxel:
* https://pypi.org/simple/pyxel/
Fetching project page and analyzing links: https://pypi.org/simple/pyxel/
Getting page https://pypi.org/simple/pyxel/
Found index url https://pypi.org/simple
Looking up "https://pypi.org/simple/pyxel/" in the cache
Request header has "max_age" as 0, cache bypassed
Starting new HTTPS connection (1): pypi.org:443
https://pypi.org:443 "GET /simple/pyxel/ HTTP/1.1" 304 0
Fetched page https://pypi.org/simple/pyxel/ as application/vnd.pypi.simple.v1+json
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/19/87/fe6d4989fc337e507250867cdd2c37b70e4e42a865bfc6cd0c6916040a93/pyxel-1.1.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/3b/02/ce83f3615ed1a36de4bb240202c7b089bd201062e9dfb54de0eae10570ea/pyxel-1.1.0.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.0
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ef/76/daa2ae342e1c47b715aaf24ee9a8d7e136bc32d6ffc9badf4382babf6cdc/pyxel-1.1.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/db/92/29aad9ab585b15a15afd9dbd246a3cbe5233a46db82fc5751d8696c23689/pyxel-1.1.1.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.1
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/3d/9f/21aa14dab8e3832a7e1163bf54fafa605b62051a5a7a627fd2ed4c7dbc4d/pyxel-1.1.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/a2/70/2af0d1a407ee2d472170b12bc014a1aa77e0546fbaf3072dcd35d2c39d26/pyxel-1.1.2.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.2
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/02/85/9ff8632f2d89c4f726060be55709e9874e60e140b98e24682267abb29007/pyxel-1.1.3-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/74/b5/3949da323cc30178ffeca2382ec01dd70507d8259400041914f512ee23fc/pyxel-1.1.3.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.3
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b2/14/40f3a2395a03d7d0418bccc855a8ede505483efb0772522f34bea95dc768/pyxel-1.1.4-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/9a/5a/d04a02199a30f84c0071a1e0e69228a77f9b17b6263c1163e3a8e278e416/pyxel-1.1.4.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.4
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/40/7e/f932194ab970efb4f32e597d2748be6b1d601a4bbc4db3175e781bf949de/pyxel-1.1.5-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/e1/b7/752d88cc9ecf364b81f80869d780903579dd7f227332dc25eaea05b7403e/pyxel-1.1.5.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.5
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/06/82/a440bc7e39fc4088d2bb250062f106e4b18244ba213d61a3d9c7e762763e/pyxel-1.1.6-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/b4/bc/fef9d49b2b5a798877f762ffb0447398d0bcc0fc65dd3f72b97ea31e9cc0/pyxel-1.1.6.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.6
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9a/de/0df866c0586bd4a3f9aef61bb8422239029bc7dd1da5425d78224e3811e2/pyxel-1.1.7-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/eb/14/ecd3c97e8ea171c02bd362f60accd8556df7c9e1785005fef7f206585e5a/pyxel-1.1.7.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.7
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/8f/32/98b51be729712423a83046c1ea72cac77d083d96919da8a0caa069202fe9/pyxel-1.1.8-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/d5/b2/414a980a6ce273b91274a5d310017f5b6765df989d1e8141921d417ac786/pyxel-1.1.8.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.1.8
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/53/db/0a0bd05c7f7550815fd1e88d87ad8b1080a99bfada2e212dde2504167f58/pyxel-1.2.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/73/39/c2f5bc0353080e47e36b960865af61aedd4fe65f6ad077296fb803484820/pyxel-1.2.0.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.0
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d6/6e/8098ba69f51b8350e70fb582d0823a77d9ebc6be7faad98afda7e81878fb/pyxel-1.2.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/fa/61/7be8fd2b8988867403edf5c16ed3ca2dfe3f357e88b4b89b86f81dece7e2/pyxel-1.2.1.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.1
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/31/58/2c92ce02787a4c82699fede1fc62c3c025a917c04505a95e43189f03ad34/pyxel-1.2.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/48/40/2b65e4da50c44af811b48dd8635173687e64d53f051ab1107e09ece18b6e/pyxel-1.2.2.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.2
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/61/d1/4ee75a51db2ce5573795b2bedb092f2e20b705fe621f102afc796efd7947/pyxel-1.2.3-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/15/5d/b99bae62a664d9ba2c6770be674e407073624b75c1beea1e8d4de00db74f/pyxel-1.2.3.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.3
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/93/21/9004764413286a378e54571b5ecc5829c2c0370eb056ddd9a0b494b44cf0/pyxel-1.2.4-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/0c/91/921e40a5645430565c81e6283400e15577179dff221d55c534f7b5d59cd7/pyxel-1.2.4.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.4
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4c/64/2a3283aefeefe9cf0c0aa4568c5e857c262959aba78b4ee7e916361cd491/pyxel-1.2.5-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/e9/0f/ec778c6d8a0f23500190354856b821752363a81dad7600881de2f0dfcf4d/pyxel-1.2.5.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.5
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ba/2a/76e3e32bf1dad31b4a63206af7c84bf1e1bd456e9c9f130718b837b7812e/pyxel-1.2.6-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/a3/ee/6f95f638863dff2b1c05f3cb7f964d10eafd143b510b378668f90258e869/pyxel-1.2.6.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.6
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/68/9a/b80379a2d0a1433071a691c5b53c957926683b86ed8de4bd2e22fba05b7e/pyxel-1.2.7-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/43/3a/65f30c845328c6b4400569780da76e3953cb7094fc60cd906ac25e6bdf8c/pyxel-1.2.7.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.7
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/7a/80/e5184111db57287e45d62ccc486a304ffabb0d9690e109f1fc9352910633/pyxel-1.2.8-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/da/92/a6fa59c1602ebd34b13f3bce15810b3ebcc88a73238c5ad2114829f02e47/pyxel-1.2.8.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.8
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ef/0f/60e8efa06790cdb7ba703efb7c077b33bdf0cabc425e4ac2b0c067fc85ca/pyxel-1.2.10-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/72/70/4524134be6fc4fd4fb82d658f0e9f16d78eba2118f9801934ba08322b59d/pyxel-1.2.10.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.2.10
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/0a/29/d577371ea11f11a0a111742cb44910e988f5b323dfed92f169563fb772ca/pyxel-1.3.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/17/b9/f770428fd16992c7e271be610f1db2d11919b06f10e224302509d66bc2a6/pyxel-1.3.0.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.3.0
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d1/24/eaf65620837a32ccd03478cc963395f8fe01baf76aaaa63a0d3ce4a3a3ad/pyxel-1.3.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/21/67/89210a76bd3d8c626003b88d74eed42cfd441a6646e93e655219a598a073/pyxel-1.3.1.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.3.1
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/66/88/8f85f62512ab910badbb0a20fc551c23b1e3c087a6887b56cde2cb41fb12/pyxel-1.3.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/8c/f2/8c770d355e3ebb467dcbbb89f16942cd6640ab8270d0afd8baf88d3243aa/pyxel-1.3.2.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.2
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/08/4a/d61c1d5c4e7e52fa64b66318edc8453e8521e46281bb29c61ec5955d0187/pyxel-1.3.3-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/3e/94/9c02480eae18b5e1b98f2b40b37f2e30c7ab3c7359af18e775c2b73eb093/pyxel-1.3.3.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.3
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f5/12/571106abea7f0eeda9b6f923dea42928ae303d5d9ca321915150700efaa1/pyxel-1.3.4-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/2e/d6/6446db4f14075cf88ca140b6b751ea8661c76af8b0966dd6907c1dd90267/pyxel-1.3.4.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.4
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/37/8f/153d41416b45fffd23047f462b47806e7c233f463cc24264847bfe37cfb2/pyxel-1.3.5-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/44/93/e4800de7c8f206d012c87d3e74fc24cc2e075d0cdfb8f0672d50b31468d1/pyxel-1.3.5.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.5
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/24/cd/de43eff8a05c5743f6fe26fcb31bf298aeb11b4695036c76849e496790fe/pyxel-1.3.6-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/a8/49/16c3d639bef1bf4b236ab853098715cf78e8e73de91aed85cf4283af7be2/pyxel-1.3.6.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.6
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/50/77/5af3b59648fd2b533b6f58a7b54cb6c370a42d9cb68d41ebc172788cea51/pyxel-1.3.7-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/44/78/cd95799fd1f3c6724c67006f4631bd8385c2750e9b02bc10deed00717db0/pyxel-1.3.7.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.7
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b0/43/58c61d6a85e406b00a2c752c32595afb586a3f141daedd04bd7f680f2f77/pyxel-1.3.8-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/1c/37/b4170ee87acda1f2223e5ad46f184c81671a7fa06e8a1e8cb5565cffc803/pyxel-1.3.8.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.8
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e2/f2/f42e1b6558f263deb9fc6acfb177d617b424bdf37911e1ca982cb7203320/pyxel-1.3.9-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9)
  Found link https://files.pythonhosted.org/packages/56/b1/90d188875ad5e2e8f22f53b6c22c52a6da05412a092d77a0e990bbd49e7d/pyxel-1.3.9.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.9), version: 1.3.9
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e7/5e/66c3264409c398b086f7da508df9d68b1f125904e40e56d527acfcd7dc9c/pyxel-1.4.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8)
  Found link https://files.pythonhosted.org/packages/0f/fe/f5d3a124b9bcd0e6bd97367328b65aae6113fc93c9cb6938e594d74f0218/pyxel-1.4.0.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8), version: 1.4.0
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/8d/b4/3cd1a1b1ea7a3bcd7e06ed8b7ff9ecd3f1a7c19f51c95710646bdafd684c/pyxel-1.4.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8)
  Found link https://files.pythonhosted.org/packages/e0/3c/6ff5483d6df70519719998582f499e49fcdce50ad0bc06d42dfb4472b301/pyxel-1.4.1.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8), version: 1.4.1
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/73/b9/141000b20b16c340c34c71aaff38a8683b13599e5b666ed64b95b840f430/pyxel-1.4.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8)
  Found link https://files.pythonhosted.org/packages/05/60/0cc619f0002b5c6fa904fc6a902d6ab68960fd1a923dd3f06db8c4f12e7d/pyxel-1.4.2.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8), version: 1.4.2
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/5d/33/a803145b6de05966f3ef8a3b6f4a3d595fe4bf13df3a68fa3b6ec31a6759/pyxel-1.4.3-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8)
  Found link https://files.pythonhosted.org/packages/31/da/bc02d33ee973dc0607a39b4cabac4bb369a199168c3b27688f2b8436d2a4/pyxel-1.4.3.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.6.8), version: 1.4.3
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/8b/56/a3e76decc52d178c957e874d43d0635c08a3332cd2e63a25ff0bc9ca7aa9/pyxel-1.5.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ed/cb/c9966df3b78c750a8397475c7a0f413df5be74238bc1f7a21ddd169a5e60/pyxel-1.5.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/60/4f/f09ce865647b0af559f745846c78ddc022671e799ef1c3fc78af9b6cddec/pyxel-1.5.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/22/27/b22f8e9dc1767609acd1e4f9121a60f4b26b59635b96dbdbed3739a3c6e5/pyxel-1.5.3-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/fc/4b/61ca4d80db120eb6b5e77a7ed243c67f6277938c2162cc8ac76253f99df9/pyxel-1.5.4-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/8f/a1/32ed223dca90fd2bdfa0a7c39b392f6e48b6603c665c3acaed01b53fb409/pyxel-1.5.5-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/5c/1f/9f32a128e480c5ddd31e4811108282803812af74d9df9037b485296e34e3/pyxel-1.5.6-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/69/5f/642e844a9bfb0b5bf72d3647fa77606c36f92d2675d3f30cf78f528df736/pyxel-1.5.7-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/cc/1d/1ca3c80a1fc9a1ace33167ec229d783a1ae77187b968bf019eda9ad696e3/pyxel-1.5.8-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9f/d9/2b09c1297d2bc9cb6d46104d596f74a85e731a4fe83718f981157351dac6/pyxel-1.6.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/21/62/2e9b6024f8681a09a5626712010b6a80bfbab587eb99451a17a958416cbc/pyxel-1.6.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/47/29/ea14b8740c150f23f7dbc6af5505cff1eef04a7e8983fc40385fa70bee2f/pyxel-1.6.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/0c/54/8a38ce57c3072d9302612682ac4b7dc62ede5f3c79c12a34c04d0db43e46/pyxel-1.6.3-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9b/c4/aeb8ff1eafbdfdd26d034485939575eaee37a1c68a1917287f002efd41a4/pyxel-1.6.4-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ef/a5/bdfc0ec063baf6c8aa87c3b33db51974a3b36861319b9ca69343ee4ce7d1/pyxel-1.6.5-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b2/eb/f928854013d494e014a3221fb5164d47162fbd4e8fa5d135b4bd0e579d50/pyxel-1.6.6-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/1c/ee/545e4a8096e6997d40bc8976dd6f48847c75b4c9f4b65481ba268a1b2153/pyxel-1.6.7-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d3/3b/6e79750028cfb819cdfc912b6bb346156553efc6aadc3c19ed23c79c657c/pyxel-1.6.8-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/51/23/bfd8371d6ebde4e8af072daaa49b08928d24188a9ef4826104003d0bbf9a/pyxel-1.6.9-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/22/ac/ff07976e6b7eb6ee4bb411c71186fc295943b5470a0b26f8e64610705c49/pyxel-1.7.0-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ee/80/e4314d4ad498d9e4e3e37c06f958666ba0fbca11d500f90861875037bdcf/pyxel-1.7.1-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/a1/52/ebec7a0273555be29b88ba0894df2e78166a5b2eb8db160c526f75662ff7/pyxel-1.7.2-py3-none-any.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/38/a2/ef6d19eac568e06986a50a5ea71d167014aad7e8c8626ec286ba21144e28/pyxel-1.8.0-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/af/aa/b088d10615e6f3b7b045de712e49f384ceb2394a27548c4c14688a9fc5e9/pyxel-1.8.0-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/6e/ba/3d83e346ba67000e5a9e29ac315befb35a3e0be075c72813194a8e4df676/pyxel-1.8.0-cp37-abi3-manylinux_2_31_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/36/72/1b4bf0b518f806427d31ec802200df60a41b2eb8f51f172add7f507ed7cb/pyxel-1.8.0-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/35/98/4c1c426bb445fb0135034e3bb51b796cf4e264dcb1cd9e83cd03c56277df/pyxel-1.8.1-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e6/db/c01efb94df925763f2bbd5368f7cce0f42c194dfcf95ef3c6305f002c54e/pyxel-1.8.1-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/6c/42/cad99ac5c5917869456cab41144afb8c49fe7d94363dd66246b8e81eeb07/pyxel-1.8.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/8e/a0/d338954f74bd664b72613ae2855bf50590c3a6594dbff3efe2d33523bcb6/pyxel-1.8.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/a3/49/1ee06c475d46782b93082518f5cbfe00a265512d0587b71537b8467476f0/pyxel-1.8.1-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/33/34/58daa78e9e19d200a22c9ae2fdf4c6fea95514a7e42e37139a8ca98aac17/pyxel-1.8.1-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d2/5d/07397fb2565bdf664eafac0bd110506531a207c4e5c33162f33936c24c45/pyxel-1.8.2-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/43/d1/b388cecca365c26791b1d11093ca4aed1f437121644c50546196716afe91/pyxel-1.8.2-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ce/f4/9de1fcd49be79bce40b0dba10297e30ae04cdf82bd60eab6c566e5dbc1f1/pyxel-1.8.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/2a/dd/694e404c14b1cab4c4fbce2b1614f69435eb4bed9d429c4217ef5b0c357f/pyxel-1.8.2-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/77/0b/3cdb4b5337b00bc17a760156347b567f1bbf831c5415bd1042de91162e32/pyxel-1.8.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/50/cf/298781d3ed20cefbd0c833c53ca2abb758174868931b50f033b2bc0c8458/pyxel-1.8.2-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/bb/f6/352e9e1e2becec4ce3138ed95ca2a3b0c699d15349888b905eb9361acac9/pyxel-1.8.2-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d5/74/23ff9a0ea3c6602354929990e065d2d061bd0c2fd8bf803bde2b778372b1/pyxel-1.8.3-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ad/ed/83335a5cdcbcafd41f7a4b6ebd631eefbcfa1d1f6a6aaf0983bce759169a/pyxel-1.8.3-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9e/7f/c0ebfb50bf68716052d1cbc1a020cae207a0e3d6aa9a4e8dfd2a55e9b823/pyxel-1.8.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/31/0f/fdce6717f807adca5ccfa1249c546b99f301351e929119d60b3a8803e6f9/pyxel-1.8.3-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/51/d7/f131f6824dbf5472c6638baf69ad2fad724819d774dfe50f6aa57d87f09c/pyxel-1.8.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d5/93/c1e712b8d728fbe980954ee34de692c5e2cf3e97ad5d3e99b333cadd2e59/pyxel-1.8.3-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d8/d5/96006dc54ec52628aa846798446aba7023290408a1951783de5bf62db623/pyxel-1.8.3-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/04/2b/f22e0e73abc5d5b530eaa918a1fdcd9271cfd5010ecf3bca5ad4d948d1ab/pyxel-1.8.3.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.8.3
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/7f/85/65c71c37c7304c38be35c489cd602e88bb6bce5c65b5a4d940e86d835156/pyxel-1.8.4-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/0e/ec/c30bc482eb6047b261f1f016ef81d2a7bb096361b0c4e115039f8aba1b82/pyxel-1.8.4-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9f/0a/05a4fb4a3bc3a1814d66e23d8359728fc137293244fad585d367150da95c/pyxel-1.8.4-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/78/3e/260608cad7afd738e4de3a58f1d11fa5278ebe3c0dba97893a4d83d62ed3/pyxel-1.8.4-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/05/6e/7a562aa4692a692dbe6064f35ac27b249e90e7cef990738f624fde754703/pyxel-1.8.4-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/bc/d2/e184e7733fd8105cd4c307195220aba2992867e93b0a0af3a4490f35464f/pyxel-1.8.4-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/cf/bb/6fcd87863000c067b084785f7256cae9da135d296ae4e9a5ac14bd0ec4e4/pyxel-1.8.4-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/0a/1f/721d76d4a07408fee83c59cd5e3a0b53db5f3c87ae0c6ab67a48cb4a93c2/pyxel-1.8.4.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.8.4
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ed/d7/4f0fec9cdd3b9698a740b2f07d254574e72828dfba42ba8d1f2e640e51ad/pyxel-1.8.5-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b8/4d/dbf7ea993566e9401dedb7022a8e45062e28a76a69efe054530377198216/pyxel-1.8.5-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/69/86/ae81feb874a2217ab98262b1dd1cab4fa1057156cd6b7155ba420edb3e17/pyxel-1.8.5-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9f/55/8e20f1795a9f1e31a3b2a7626b89899233e5f133b045c6ec6ea35e10b719/pyxel-1.8.5-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4a/a2/24dd8baeffe109456cdfd9f62380010a1d98d578e46dcbb38c42cc4fcb0e/pyxel-1.8.5-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/98/d1/9748a6322cfa28d8bb9511a59c6cbcf9e96ebe9bb567ceb96d4b2ec0f6e1/pyxel-1.8.5-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4d/6e/9839a1ac98890ec38414ee5926a3199422ceb6b6443b7cc27bee11d43402/pyxel-1.8.5-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Found link https://files.pythonhosted.org/packages/a3/60/f2e36a17b41b0c18a06476cfb96a71e9bc34150e3ecb113ca377dea29012/pyxel-1.8.5.tar.gz (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7), version: 1.8.5
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/7e/53/44e1eb189e7dd6e23f13546aa4d34987af15e87f0fd31718a18ae0db4846/pyxel-1.8.6-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/59/52/8408570020afa5e381d753282b63136d48b13afec19edb4e6cc77164bdb1/pyxel-1.8.6-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/df/a0/bb266c4b31038e79b514718957d2dae136cbc71de95b8e7634f8f4b61c9b/pyxel-1.8.6-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/2e/40/cd0c1c1a1c83490eb180253fe6830e88527b1a5cf8ca40b94790cccf103c/pyxel-1.8.6-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/fa/d4/906c8c99d2e88b5e5e849d7025b36d1ea55369ce9ae3cd18915f35e82f78/pyxel-1.8.6-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/6b/23/ec8c813d18bc2c82905b588d38bb5baa1b4e6a0c3fa38b84bc567963e6f9/pyxel-1.8.6-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/32/3e/43efdab73f9145d02fdd61f2673cadaede88018a977e388b59dc5b3fb253/pyxel-1.8.6-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/da/3c/39b6de30dd8a3d12295f8650ae98695cdb3801a7eb282c44592f765416e1/pyxel-1.8.7-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/61/e2/50bdce071d229789b784a8c4fc9c9c603c3a819b6b52b8be0154da121477/pyxel-1.8.7-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/47/53/99f21fbc3a437335a9b916519896a40e96452648072e5582547006c165a6/pyxel-1.8.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/3a/bc/892626b434a9f703d4aeb2005e9e0a1c7f6e4cc8223cb064d0d40433bf70/pyxel-1.8.7-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ac/02/5e35cd60fdbad4066f8e1fc05597d78a6fa91633f8eec7eec8b0480b9042/pyxel-1.8.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e4/fb/179a8d7852578f549cd5b4bb1c3d597f2e55caf0f6da0e2d98974796f5a7/pyxel-1.8.7-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/37/cf/bd91a4b19026474679e540aa97addf3612b6ab6df3f12ab6a7f0b46312e1/pyxel-1.8.7-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b3/86/ff41bb91c4bbe917f241277117a9a92c7d75acda1a96b811c280570869b8/pyxel-1.8.8-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d5/be/42856395dae34536381b9668602ca1b8e32120a7d3fab3daedaa65d0d95c/pyxel-1.8.8-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/8c/49/c260a55c9c1230830782a0c2c3a24b6d257efc14874916878555f304c75e/pyxel-1.8.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f6/06/ce586a85560177973f68769ea17994e5af68ec7e999f62f334f838203c2a/pyxel-1.8.8-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/56/22/11db279e63734d4c36b50b9c75573a42e7d2cb4809c381cdd547f3d35488/pyxel-1.8.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/87/85/bc79f82b5b720425d057dc0cee25b8644b84ca84c61a8a5f44b1d1ea7d74/pyxel-1.8.8-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/1d/16/2a85d9707071ec1c40081d08dd24cea5dac9b8dbaabb15feb509699b3ea7/pyxel-1.8.8-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/38/fa/08adb49c4c28e6c36a6753ec4b896362db7da2bf701adf244b2fb837c97b/pyxel-1.8.9-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/58/db/5255ffac8033997abda8ee14ee3c8946180d354bdc8da3f5a4c1b073d06e/pyxel-1.8.9-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f3/4c/5ac1b35892e63212ebc5df785b554ba6905f4344dca7dd365ef95d0eff0d/pyxel-1.8.9-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/28/0b/20b613dde76452cfe5ba24a1e4aabb21ecd031f9ca62726bf9c3e1ac11be/pyxel-1.8.9-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9d/a2/ceba5fb6705a7694eea47d6ddec64bff9d00e0ddfbd162686b52f07775ec/pyxel-1.8.9-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/67/fd/e15f6db1213929f2705ba31f951acbc565ace2e73724b38ac7cc1b401adf/pyxel-1.8.9-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b9/4b/feb7628a21f9beb10b2494510eee04bffd3d6528468a267e730272927a6a/pyxel-1.8.9-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d1/06/65ddec67be5e58f5da035817aa19c79889fc63b782200d6951938126904c/pyxel-1.8.10-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/25/06/cb133e7351cfe7ea1e9ae11ee4b8f760fd17cc7748c83ddcb335985ae13f/pyxel-1.8.10-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/90/33/cc5c239fe45070978d9696711b16775d3ed2de2e06fdd11c752b3c63d247/pyxel-1.8.10-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/53/6d/edee1655452c1c96f2f6f68211b0c8c25d5757393add9a566d2fca837e4b/pyxel-1.8.10-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/1f/fb/786ebe39eedf4ba3d05cff02190dfb41f7cdc74725daa627ef6fc2307f56/pyxel-1.8.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/79/83/a422ba057a5935986da90b7aa7a1767e1d2eabf3f3a989315d24e6c8d686/pyxel-1.8.10-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/90/d2/c1f0c5789a20cc66d8d98d61d2f0b472e5ceb16e6cd884d4137fc8d8e902/pyxel-1.8.10-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d2/e7/0a9d73b91dc3b29bff51852a2b5f0c0d1dc008f8d308b367a9c0015fbbcb/pyxel-1.8.11-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/0f/5d/a8ede42ad422cf74ae29ccc4775391c9332ee23334243b0d4fe0f0d37767/pyxel-1.8.11-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/54/83/cdaa27ca51f082de6ccdcac568d11546719d3d7bda6548f6340c31b43437/pyxel-1.8.11-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b3/5c/72eb0729fb2d72535bbe6e58a6c329772bdff65095ce0037267e51cde45e/pyxel-1.8.11-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f7/63/d5bcd2dd6b2d3b9c26aa2b20ecd191d4493adc2074c03b5f0c3c6ee6d0c5/pyxel-1.8.11-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e9/7d/cc46f3ba963e6ee3e2d2a81ef9499eb58fd5fdab6de4eda42fff8aa817e0/pyxel-1.8.11-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9e/3e/68c8a831c642f00fb89a54bb69659fbb73012b55e593305e915dffa7b50f/pyxel-1.8.11-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/74/da/c79f9ad868ad94b0110fb3297373d00f0be7404355b3a708562272872e43/pyxel-1.8.12-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/c5/88/3226a36e5ac3582f107f3bd49b559478a3e769ab79e9eadaee02cdba9060/pyxel-1.8.12-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/90/f6/cd81f17329d7223cd8c8751c25ce8d858cf5c11109d38b15ca273e2a0af4/pyxel-1.8.12-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/10/db/57dbdaefa529ed54b5636f2013886b49f838db73608298480c6706b7f383/pyxel-1.8.12-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9d/e2/6f650511dafffd8ce9f4281f763ba86dac9ae40385cbc833faf50f30374a/pyxel-1.8.12-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4a/d4/f7ad8e6c45079c0efff01dbb61bcc3f7569bf62a9e5feedbd01ab2e74f4e/pyxel-1.8.12-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/7c/a4/39558f7d92525856665af0514e268e5f1206623997012eff1ad14f19a2a8/pyxel-1.8.12-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d3/49/1d23f46b7c3aae233aecb499c2b071b67abd0e70e3c593ec50bfdc989963/pyxel-1.8.13-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4c/3f/4cb7531664f10f2959635f58488be78a9c12aac5c5fca92b4d5c6edf2ef9/pyxel-1.8.13-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4f/57/7ac5a53d6863b6c1836d08b378db0e68bc94f2b24e5c0e7b36e47057df0f/pyxel-1.8.13-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/c0/4e/1a1add033487e2385dfc52a55213b08d952b241775dcdb2ff20e85b73ab3/pyxel-1.8.13-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/47/b2/a2dbebbde71e69279202e1494379c1655735e1299687078bae9db1592f12/pyxel-1.8.13-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/1d/d6/0adb496eeddce313feb5ef71d166f036faf8d8c9c095854e33b8a8c7226c/pyxel-1.8.13-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/c0/d8/eba6163167abd4573f590b7128af93285544e0e1abe49d276d90faafda1f/pyxel-1.8.13-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/c5/7f/b7b01b14777d71e0c46afa66261372be1ecdf73228c5e189a7aa499cefbc/pyxel-1.8.14-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/1a/7e/50e7f28c8c61339e906c6f3439143a3247b9c21691cd45aa62878ab9d6e3/pyxel-1.8.14-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/9a/d0/ae1146dbd0d4adc62ec705a9321e304c0914bddde7b955f5d5a6cd3f04e9/pyxel-1.8.14-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/98/d9/f962b214a2ae5f43b607d59ad262391da3a403dec8057695cb972769ccd8/pyxel-1.8.14-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/47/72/e95a325eac602b355ab0bd1ff6f41574fc0b4752bbed8ca68941504abb28/pyxel-1.8.14-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/db/22/58aef254fbf0ed3e6a4546e66b8e81e0b8734d9820129c1f7b73bb2449ec/pyxel-1.8.14-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/55/ce/5bdf79fd9ae2a92dd19875c46a75a8aea6e89d08ff6946a1f44c7f8c6727/pyxel-1.8.14-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d8/e9/7335632b782c46cb5568062d52dcbf53ba47bd0473accf48ddb2753640fb/pyxel-1.8.15-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/26/83/4ae096614c774204443bd20a08b21b4b388a4d73e052bc64e9a2bce68f0b/pyxel-1.8.15-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d2/45/d94ac12696450083063cf70eb22552b2f7dd0006bde3e84d446ab2d1697e/pyxel-1.8.15-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/90/96/118abf6962b200253bc613c9c04af4774880b39370596f1d9d3cf2ade498/pyxel-1.8.15-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/d7/41/1e800d5b1edf8ffbb4332d3f82e9a8eff4685417d54ec20ddd50690ef0e3/pyxel-1.8.15-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/bd/98/10c5defd13dbe65dac7ee12103227f5054f35c16e378b34467cb18908a1c/pyxel-1.8.15-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/92/49/b23f88c62ed0f6adc28e4ad00d7c584c2cf610ead2efc61299223b17c083/pyxel-1.8.15-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ac/26/3235b78a7621bdf9b226537b02942ff0e6a7dc42548180e1349ca5871de1/pyxel-1.8.16-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/0c/8d/116effeecf33395eda19271a1794c7797c8a7925d13c80e31a6350edfe02/pyxel-1.8.16-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/08/8f/9837db4b26e695829be0c22e03bfef381cd01bfb8ea098287d1125c02e77/pyxel-1.8.16-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/79/87/aaac85df7b4c489351d689bbc0df419ca3b2ec3eb03eb9a276a7a266a14f/pyxel-1.8.16-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/30/91/092c67a71fd6843aee7263469574a7210653f6d2ce3b1a2570a71c6d75ff/pyxel-1.8.16-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/df/08/adbca7f18471193a449b820730bd62a8cd18ffb18cf5934cbb85e15dac88/pyxel-1.8.16-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/92/b7/4a4329ace90ac7cdd953006bfc17bf0c8b3d6003227d2f238b95419db696/pyxel-1.8.16-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f6/eb/2038f4e9db300e152ece874ce30532ed099ab95c93bb23dec97f824e339d/pyxel-1.8.17-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f9/80/2a494dbf400f6f382693f1c0a12e303e6a32a33181287899739a17fa27d7/pyxel-1.8.17-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/aa/86/46b902f8f5dd9557f91f2172b6d9453655ff77e49f3231fef63463f44670/pyxel-1.8.17-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/5a/92/da6480a9d935b0b58f16b57b47830e9035363535f95001fe91ecff2cc741/pyxel-1.8.17-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/db/71/6224d46f4a83eed701e26dad3e7990f25a2392049dee583419f8797da6bf/pyxel-1.8.17-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/a6/9f/a709af318e254952cb8bac0f5114b01d50f2b649fa4bf4e8c10259563c84/pyxel-1.8.17-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/2c/78/a85821821934d9335bd5a8f3450ed3a238fff8e1387ffea624495a048207/pyxel-1.8.17-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/77/80/538d5607553a9eed6987ce2f440b1077d9f33bc357dd8e5de45e4bad00db/pyxel-1.8.18-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/cd/d1/918deafc35d1c7c8b47069ffe3d03f4bc85710e269ac30a3502931ddebf6/pyxel-1.8.18-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/7d/f7/37d54b1e398986c7921c3a45a325ada6d5bb060d309f9ad8a6d0b18d6091/pyxel-1.8.18-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/56/fb/37287ce85abecf4b2561acb9c10769882ad34d906b2cc6ccd74f20437b5c/pyxel-1.8.18-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/cc/d9/d76d0df73ffb8ee959386cb5a6656a3ba1af9dc8734251261d0c70567d79/pyxel-1.8.18-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b6/74/4cb45109b468045e2f85ae911d79f358600fa76f8f92e950becb3e3692d3/pyxel-1.8.18-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/79/05/328d2662beea75622f33e27942dbe605e81a6b5c865e7a53144d7aa1d3fe/pyxel-1.8.18-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f5/a2/8f153353c04086e6bd5af0f861195e7c3be936a159f2b42dd915d2cff9e4/pyxel-1.8.19-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b4/d6/8ebb99fb5feae61b597c7d85b965c5ba98e085a92dd7ed687d50b7b1c3bc/pyxel-1.8.19-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/28/f4/9737827cc553a556c1ef9fd03d3fa161899afca5e719e720bcfd3120369c/pyxel-1.8.19-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/4c/d9/c795f00194ddf2d419bd7e267a518ae4a4393046f2457d8c03eaacde2188/pyxel-1.8.19-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/fe/10/6a1da25047fa56f0e29a7d1511c0fb21f2e5634c4583483268abcf367a3f/pyxel-1.8.19-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e8/36/aab395afb9565fe166ddaa6294c1fcd84ea22e4512bd8b25c52f59cb700e/pyxel-1.8.19-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/a9/74/29c24b1aa5dc15b5df97d38850a2a04e3eb9c5b56fec3908fd0206537ca6/pyxel-1.8.19-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/5d/be/d39239b368c24132d91764d193f4ed602a210f76808458ea5036946e0d25/pyxel-1.8.20-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/67/0b/3a653747ac69a316bc2c4e44bd652b0fedc3a7ca2e256c689290b8267652/pyxel-1.8.20-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/0f/18/cc6a901d203a8bd5c2e7cd19b500f97811686e12d16c1d435a64d8ae6268/pyxel-1.8.20-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b6/ca/91f80c7c5e156c40759772f407632a7e31c43f77a5a4d56873ceb9ee6af1/pyxel-1.8.20-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/f0/c0/aaabfbbfda7971f81beb9a59a7cc0c5ce3cdbf8f9fad40281d435a8ba266/pyxel-1.8.20-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/09/96/4bd92a7b8430fae9a6e266ca6e2145cc5c932927f0b8f1e2c2a2652c2e37/pyxel-1.8.20-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/24/3c/90976c4dc832d121e5cfa6d035c8e20eb710890ab7cab9340e30317a4b72/pyxel-1.8.20-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/a1/6f/8193340b04109d7353e5c86710b5896fa4e243d5d110e471086cf9ae6a26/pyxel-1.8.21-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ea/32/8ef952756c4422579af1794f434ee53cec69445cb630aeb5afcf43fce49c/pyxel-1.8.21-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/1e/e0/167e4da20bf58cb25e1532b6cdf4f9dcd3fb380f1c144ac8298d72734b8b/pyxel-1.8.21-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/64/18/a200373d47067489ce3cbe0c62a2d3371c7c7206c6bdf05eb36482c03915/pyxel-1.8.21-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/db/87/17db20d92a2f2cbda161366fa8b55551d4a99580d8ca88ad963fd666ce5c/pyxel-1.8.21-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/ba/2a/ef28b73e49c35cf531a8a217932102cf64aed7ddd20e490c431909c82c83/pyxel-1.8.21-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b7/20/c4294d37adaf6d88a8b612dbf7548eaff677f0491ebae1e491069509a758/pyxel-1.8.21-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/7c/ed/6db726127576f0f2e1a46648793333907636586c3d277baf89843051e244/pyxel-1.8.22-cp37-abi3-macosx_10_7_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/25/00/d441d855729423cbdcc07d1dd24a88d7381adf0f8bce98021a45693a8c1b/pyxel-1.8.22-cp37-abi3-macosx_11_0_arm64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/b2/91/62dcb9fabd98babab1d74ab2e7e91cb3e7050865b00dbf88fadbad04570b/pyxel-1.8.22-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/12/3f/7c2fb2e0133392139829c91f4fecaf77e16c66746805abfda25570403d31/pyxel-1.8.22-cp37-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/c9/ce/ff068844d20dc5103fafda2c8dac6a3901fb47a857bbea4a3984964e18d9/pyxel-1.8.22-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/e9/25/52548db94c58819032999d4be0a5043963281cccfaee79329be9ba86aaeb/pyxel-1.8.22-cp37-abi3-win32.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
  Skipping link: No binaries permitted for pyxel: https://files.pythonhosted.org/packages/60/d6/8260077531da9d021e6889294ba74191cbf91d9f4921110052026a6ff681/pyxel-1.8.22-cp37-abi3-win_amd64.whl (from https://pypi.org/simple/pyxel/) (requires-python:>=3.7)
Skipping link: not a file: https://pypi.org/simple/pyxel/
Given no hashes to check 36 links for project 'pyxel': discarding no candidates
Collecting pyxel
  Created temporary directory: /tmp/pip-unpack-gswhoj0d
  Looking up "https://files.pythonhosted.org/packages/a3/60/f2e36a17b41b0c18a06476cfb96a71e9bc34150e3ecb113ca377dea29012/pyxel-1.8.5.tar.gz" in the cache
  Current age based on date: 59041
  Ignoring unknown cache-control directive: immutable
  Freshness lifetime from max-age: 365000000
  The response is "fresh", returning cached response
  365000000 > 59041
  Using cached pyxel-1.8.5.tar.gz (1.1 MB)
  Added pyxel from https://files.pythonhosted.org/packages/a3/60/f2e36a17b41b0c18a06476cfb96a71e9bc34150e3ecb113ca377dea29012/pyxel-1.8.5.tar.gz to build tracker '/tmp/pip-build-tracker-3trr3inu'
  Created temporary directory: /tmp/pip-build-env-tqa2lvh9
  Installing build dependencies: started
  Running command pip subprocess to install build dependencies
  Using pip 22.3 from /home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip (python 3.10)
  DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at https://github.com/pypa/pip/issues/11453
  Collecting maturin<0.14,>=0.13.3
    Using cached maturin-0.13.6.tar.gz (153 kB)
    Installing build dependencies: started
    Running command pip subprocess to install build dependencies
    DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at https://github.com/pypa/pip/issues/11453
    Collecting setuptools
      Using cached setuptools-65.5.0.tar.gz (2.6 MB)
      Getting requirements to build wheel: started
      Getting requirements to build wheel: finished with status 'done'
      Installing backend dependencies: started
      Installing backend dependencies: finished with status 'done'
      Preparing metadata (pyproject.toml): started
      Preparing metadata (pyproject.toml): finished with status 'done'
    Collecting wheel>=0.36.2
      Using cached wheel-0.37.1.tar.gz (66 kB)
      Preparing metadata (setup.py): started
      Preparing metadata (setup.py): finished with status 'done'
    Collecting tomli>=1.1.0
      Using cached tomli-2.0.1.tar.gz (15 kB)
      Installing build dependencies: started
      Installing build dependencies: finished with status 'done'
      Getting requirements to build wheel: started
      Getting requirements to build wheel: finished with status 'done'
      Preparing metadata (pyproject.toml): started
      Preparing metadata (pyproject.toml): finished with status 'done'
    Collecting setuptools-rust>=1.4.0
      Using cached setuptools-rust-1.5.2.tar.gz (295 kB)
      Installing build dependencies: started
      Installing build dependencies: finished with status 'done'
      Getting requirements to build wheel: started
      Getting requirements to build wheel: finished with status 'done'
      Installing backend dependencies: started
      Installing backend dependencies: finished with status 'done'
      Preparing metadata (pyproject.toml): started
      Preparing metadata (pyproject.toml): finished with status 'done'
    Collecting typing-extensions>=3.7.4.3
      Using cached typing_extensions-4.4.0.tar.gz (49 kB)
      Installing build dependencies: started
      Installing build dependencies: finished with status 'done'
      Getting requirements to build wheel: started
      Getting requirements to build wheel: finished with status 'done'
      Preparing metadata (pyproject.toml): started
      Preparing metadata (pyproject.toml): finished with status 'done'
    Collecting semantic-version<3,>=2.8.2
      Using cached semantic_version-2.10.0.tar.gz (52 kB)
      Preparing metadata (setup.py): started
      Preparing metadata (setup.py): finished with status 'done'
    Building wheels for collected packages: tomli, setuptools-rust, typing-extensions, setuptools
      Building wheel for tomli (pyproject.toml): started
      Building wheel for tomli (pyproject.toml): finished with status 'done'
      Created wheel for tomli: filename=tomli-2.0.1-py3-none-any.whl size=12759 sha256=697829f7d3cc4157acc4e8fc3c5952f552eb1dab37536287cf811362a144deef
      Stored in directory: /home/vh/.cache/pip/wheels/57/de/89/36bbfed7215bd9bfb87792ffc1ea893bd711267a48a275c519
      Building wheel for setuptools-rust (pyproject.toml): started
      Building wheel for setuptools-rust (pyproject.toml): finished with status 'done'
      Created wheel for setuptools-rust: filename=setuptools_rust-1.5.2-py3-none-any.whl size=23542 sha256=ec5ecdda7fbe512cb6a57b1da5a8d49421357c315d832119ed3c23042daac26f
      Stored in directory: /home/vh/.cache/pip/wheels/21/db/36/dafdd8b661f79bd02eb813eb4b1d8a9411694c10b06563e420
      Building wheel for typing-extensions (pyproject.toml): started
      Building wheel for typing-extensions (pyproject.toml): finished with status 'done'
      Created wheel for typing-extensions: filename=typing_extensions-4.4.0-py3-none-any.whl size=26662 sha256=696e85fad209afc6882931b39e464607cbe959373393a62f1cf0b31a39aa5e1e
      Stored in directory: /home/vh/.cache/pip/wheels/cc/24/82/ba0a5294e1218a5396334e1e1ba9412cb7878d9bfc431925e9
      Building wheel for setuptools (pyproject.toml): started
      Building wheel for setuptools (pyproject.toml): finished with status 'done'
      Created wheel for setuptools: filename=setuptools-65.5.0-py3-none-any.whl size=1232695 sha256=8316ad79f0517a7a106c4485842641b0fba3ae677f60bc3baae5cfd8a095a9d0
      Stored in directory: /home/vh/.cache/pip/wheels/a9/60/a2/43260de2bf05fe7d1796dcb6815ca80cd981dc1171684f40a8
    Successfully built tomli setuptools-rust typing-extensions setuptools
    Installing collected packages: wheel, typing-extensions, tomli, setuptools, semantic-version, setuptools-rust
      DEPRECATION: wheel is being installed using the legacy 'setup.py install' method, because the '--no-binary' option was enabled for it and this currently disables local wheel building for projects that don't have a 'pyproject.toml' file. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/11451
      Running setup.py install for wheel: started
      Running setup.py install for wheel: finished with status 'done'
      DEPRECATION: semantic-version is being installed using the legacy 'setup.py install' method, because the '--no-binary' option was enabled for it and this currently disables local wheel building for projects that don't have a 'pyproject.toml' file. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/11451
      Running setup.py install for semantic-version: started
      Running setup.py install for semantic-version: finished with status 'done'
    Successfully installed semantic-version-2.10.0 setuptools-65.5.0 setuptools-rust-1.5.2 tomli-2.0.1 typing-extensions-4.4.0 wheel-0.37.1
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Running command Getting requirements to build wheel
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Running command Preparing metadata (pyproject.toml)
    running dist_info
    creating /tmp/pip-modern-metadata-p44o9tit/maturin.egg-info
    writing /tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/PKG-INFO
    writing dependency_links to /tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/dependency_links.txt
    writing requirements to /tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/requires.txt
    writing top-level names to /tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/top_level.txt
    writing manifest file '/tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/SOURCES.txt'
    reading manifest file '/tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file '/tmp/pip-modern-metadata-p44o9tit/maturin.egg-info/SOURCES.txt'
    creating '/tmp/pip-modern-metadata-p44o9tit/maturin-0.13.6.dist-info'
    Preparing metadata (pyproject.toml): finished with status 'done'
  Collecting tomli>=1.1.0
    Using cached tomli-2.0.1.tar.gz (15 kB)
    Installing build dependencies: started
    Running command pip subprocess to install build dependencies
    DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels. In the future --no-binary will not influence the wheel cache. pip 23.1 will enforce this behaviour change. A possible replacement is to use the --no-cache-dir option. You can use the flag --use-feature=no-binary-enable-wheel-cache to test the upcoming behaviour. Discussion can be found at https://github.com/pypa/pip/issues/11453
    Collecting flit_core<4,>=3.2.0
      Using cached flit_core-3.7.1.tar.gz (40 kB)
      Getting requirements to build wheel: started
      Getting requirements to build wheel: finished with status 'done'
      Preparing metadata (pyproject.toml): started
      Preparing metadata (pyproject.toml): finished with status 'done'
    Building wheels for collected packages: flit_core
      Building wheel for flit_core (pyproject.toml): started
      Building wheel for flit_core (pyproject.toml): finished with status 'done'
      Created wheel for flit_core: filename=flit_core-3.7.1-py3-none-any.whl size=60195 sha256=62c5e4199aeb1d67d3994d591bb18cc86b61554922c5705a4030b49985706815
      Stored in directory: /home/vh/.cache/pip/wheels/f1/b6/ba/54cfcde21e6a34062f0e02fd9cca493838a653386a067026ca
    Successfully built flit_core
    Installing collected packages: flit_core
    Successfully installed flit_core-3.7.1
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Running command Getting requirements to build wheel
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Running command Preparing metadata (pyproject.toml)
    Preparing metadata (pyproject.toml): finished with status 'done'
  Building wheels for collected packages: maturin, tomli
    Building wheel for maturin (pyproject.toml): started
    Running command Building wheel for maturin (pyproject.toml)
    running bdist_wheel
    running build
    running build_py
    creating build
    creating build/lib.linux-x86_64-cpython-310
    creating build/lib.linux-x86_64-cpython-310/maturin
    copying maturin/__init__.py -> build/lib.linux-x86_64-cpython-310/maturin
    copying maturin/import_hook.py -> build/lib.linux-x86_64-cpython-310/maturin
    copying maturin/__main__.py -> build/lib.linux-x86_64-cpython-310/maturin
    running egg_info
    creating maturin.egg-info
    writing maturin.egg-info/PKG-INFO
    writing dependency_links to maturin.egg-info/dependency_links.txt
    writing requirements to maturin.egg-info/requires.txt
    writing top-level names to maturin.egg-info/top_level.txt
    writing manifest file 'maturin.egg-info/SOURCES.txt'
    reading manifest file 'maturin.egg-info/SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    writing manifest file 'maturin.egg-info/SOURCES.txt'
    warning: build_py: byte-compiling is disabled, skipping.

    running build_ext
    running build_rust
    cargo build --manifest-path Cargo.toml --message-format=json-render-diagnostics --release -v
        Updating crates.io index
    error: failed to select a version for the requirement `anyhow = "=1.0.65"`
    candidate versions found which didn't match: 1.0.62, 1.0.61, 1.0.60, ...
    location searched: crates.io index
    required by package `maturin v0.13.6 (/tmp/pip-install-9rlxr9ym/maturin_dc7d1584261b4825a6b7506d4d9d03c6)`
    error: `cargo build --manifest-path Cargo.toml --message-format=json-render-diagnostics --release -v` failed with code 101
    error: subprocess-exited-with-error

    × Building wheel for maturin (pyproject.toml) did not run successfully.
    │ exit code: 1
    ╰─> See above for output.

    note: This error originates from a subprocess, and is likely not a problem with pip.
    full command: /home/vh/meowser/.direnv/python-3.10/bin/python3 /home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py build_wheel /tmp/tmptvtcabix
    cwd: /tmp/pip-install-9rlxr9ym/maturin_dc7d1584261b4825a6b7506d4d9d03c6
    Building wheel for maturin (pyproject.toml): finished with status 'error'
    ERROR: Failed building wheel for maturin
    Building wheel for tomli (pyproject.toml): started
    Running command Building wheel for tomli (pyproject.toml)
    Building wheel for tomli (pyproject.toml): finished with status 'done'
    Created wheel for tomli: filename=tomli-2.0.1-py3-none-any.whl size=12759 sha256=697829f7d3cc4157acc4e8fc3c5952f552eb1dab37536287cf811362a144deef
    Stored in directory: /home/vh/.cache/pip/wheels/57/de/89/36bbfed7215bd9bfb87792ffc1ea893bd711267a48a275c519
  Successfully built tomli
  Failed to build maturin
  ERROR: Could not build wheels for maturin, which is required to install pyproject.toml-based projects
  error: subprocess-exited-with-error
  
  × pip subprocess to install build dependencies did not run successfully.
  │ exit code: 1
  ╰─> See above for output.
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
  full command: /home/vh/meowser/.direnv/python-3.10/bin/python3 /home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/__pip-runner__.py install --ignore-installed --no-user --prefix /tmp/pip-build-env-tqa2lvh9/overlay --no-warn-script-location -v --no-binary :all: --only-binary :none: -i https://pypi.org/simple -- 'maturin>=0.13.3,<0.14'
  cwd: [inherit]
  Installing build dependencies: finished with status 'error'
error: subprocess-exited-with-error

× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.
Exception information:
Traceback (most recent call last):
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/cli/base_command.py", line 160, in exc_logging_wrapper
    status = run_func(*args)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/cli/req_command.py", line 247, in wrapper
    return func(self, options, args)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/commands/install.py", line 400, in run
    requirement_set = resolver.resolve(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py", line 92, in resolve
    result = self._result = resolver.resolve(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py", line 481, in resolve
    state = resolution.resolve(requirements, max_rounds=max_rounds)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py", line 348, in resolve
    self._add_to_criteria(self.state.criteria, r, parent=None)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py", line 172, in _add_to_criteria
    if not criterion.candidates:
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py", line 151, in __bool__
    return bool(self._sequence)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 155, in __bool__
    return any(self)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 143, in <genexpr>
    return (c for c in iterator if id(c) not in self._incompatible_ids)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py", line 47, in _iter_built
    candidate = func()
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py", line 206, in _make_candidate_from_link
    self._link_candidate_cache[link] = LinkCandidate(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 297, in __init__
    super().__init__(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 162, in __init__
    self.dist = self._prepare()
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 231, in _prepare
    dist = self._prepare_distribution()
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py", line 308, in _prepare_distribution
    return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/operations/prepare.py", line 491, in prepare_linked_requirement
    return self._prepare_linked_requirement(req, parallel_builds)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/operations/prepare.py", line 577, in _prepare_linked_requirement
    dist = _get_prepared_distribution(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/operations/prepare.py", line 69, in _get_prepared_distribution
    abstract_dist.prepare_distribution_metadata(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py", line 38, in prepare_distribution_metadata
    self._prepare_build_backend(finder)
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py", line 70, in _prepare_build_backend
    self.req.build_env.install_requirements(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/build_env.py", line 216, in install_requirements
    self._install_requirements(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/build_env.py", line 274, in _install_requirements
    call_subprocess(
  File "/home/vh/meowser/.direnv/python-3.10/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py", line 224, in call_subprocess
    raise error
pip._internal.exceptions.InstallationSubprocessError: pip subprocess to install build dependencies exited with 1
Removed pyxel from https://files.pythonhosted.org/packages/a3/60/f2e36a17b41b0c18a06476cfb96a71e9bc34150e3ecb113ca377dea29012/pyxel-1.8.5.tar.gz from build tracker '/tmp/pip-build-tracker-3trr3inu'
Removed build tracker: '/tmp/pip-build-tracker-3trr3inu'

@messense
Copy link
Member

No binaries permitted

https://github.com/pypa/pip/blob/ff207cff2aeea05f13a246a99f24e6944492b18e/src/pip/_internal/index/package_finder.py#L184-L186

Looks like somehow you have disabled pip from installing wheels.

@messense
Copy link
Member

DEPRECATION: --no-binary currently disables reading from the cache of locally built wheels.

My pip does not output this deprecation warning, so it seems that you have enabled --no-binary somewhere.

@inktrap
Copy link
Author

inktrap commented Oct 25, 2022

That line stood out to me too …

I then checked .pip/pip.conf and tadaa:

[install]
# user = yes
require-virtualenv = yes
no-binary = :all:

I had some problem a while ago that was fixed by using no-binary but since I don't remember what it was I am going to disable it.

@inktrap
Copy link
Author

inktrap commented Oct 25, 2022

Now it works. Thank you so much for sticking with me and figuring out these config error :) Have a nice day!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants