Skip to content

build: bump setuptools to >=65.6 #5842

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

Merged
merged 1 commit into from
Feb 19, 2024

Conversation

bastimeyer
Copy link
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