-
Notifications
You must be signed in to change notification settings - Fork 0
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
Remove deprecated urllib3 secure extra #2
Remove deprecated urllib3 secure extra #2
Conversation
@krismolendyke Would you mind taking a look at this? |
Thanks @krismolendyke, appreciate you making a new release so quickly! |
Will do @cdce8p. Having some issues w/ what seems to be related to pypi/warehouse#10030. I haven't dug into it yet but a simple upload to PyPI is getting kicked back w/ a |
Strange. Just because of interest, I tried uploading the package to https://test.pypi.org. (With a slightly different name python3.11 -m venv venv-311
source venv-311/bin/activate
pip install build twine wheel
python -m build
twine check dist/*
twine upload --repository testpypi dist/*
# Building with setuptools worked as well
pip install setuptools
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --repository testpypi dist/* |
Thanks, I'll have a closer look this weekend. It's been quite a while
since I uploaded something to PyPI so it's likely PEBCAK.
…On Wed, Oct 4, 2023 at 7:34 AM Marc Mueller ***@***.***> wrote:
Having some issues w/ what seems to be related to pypi/warehouse#10030
<pypi/warehouse#10030>. I haven't dug into it
yet but a simple upload to PyPI is getting kicked back w/ a 400.
Strange. Just because of interest, I tried uploading the package to
https://test.pypi.org. (With a slightly different name tank_utility_test.)
That worked without issues. If it helps, these are the steps I used
python3.11 -m venv venv-311source venv-311/bin/activate
pip install build twine wheel
python -m build
twine check dist/*
twine upload --repository testpypi dist/*
# Building with setuptools worked as well
pip install setuptools
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --repository testpypi dist/*
—
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAA6W6V3DIKXM6GUZNBLVK3X5VCUVAVCNFSM6AAAAAA4N6LIS6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONBWGY4TCOJTHA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Got it, definitely rusty uploading to PyPI 😄 |
urllib3[secure]
has been deprecated and will be removed in the future.AFAICT the secure extra isn't used anywhere, so it's safe to remove it.
More details