Thanks to visit codestin.com
Credit goes to github.com

Skip to content

build: bump setuptools to >=65.6#5842

Merged
bastimeyer merged 1 commit into
streamlink:masterfrom
bastimeyer:build/setuptools-65.6
Feb 19, 2024
Merged

build: bump setuptools to >=65.6#5842
bastimeyer merged 1 commit into
streamlink:masterfrom
bastimeyer:build/setuptools-65.6

Conversation

@bastimeyer

Copy link
Copy Markdown
Member

Resolves #5841


bad

docker run --rm -i --mount type=bind,source=./dist,target=/dist python:3.11 bash <<"EOF"
cd "$(mktemp -d)"
tar -xzf /dist/streamlink-6.6.1+2.g47cebc73.tar.gz --strip-components=1
python -m pip install build
python -m build --no-isolation --wheel
EOF
ERROR Missing dependencies:
        setuptools>=65.6

good

docker run --rm -i --mount type=bind,source=./dist,target=/dist python:3.11 bash <<"EOF"
cd "$(mktemp -d)"
tar -xzf /dist/streamlink-6.6.1+2.g47cebc73.tar.gz --strip-components=1
python -m pip install build setuptools==65.6 versioningit
python -m build --no-isolation --wheel
EOF
Successfully built streamlink-6.6.1+2.g47cebc73-py3-none-any.whl

@bastimeyer bastimeyer merged commit 61cec0e into streamlink:master Feb 19, 2024
@bastimeyer bastimeyer deleted the build/setuptools-65.6 branch February 19, 2024 17:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Unable to build on python 3.11 docker image

1 participant