We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to pypi page, the python2 support has been dropped with release 1.0. The main branch in the repository is currently v.1.0.4 release (https://github.com/msgpack/msgpack-python/blob/main/msgpack/__init__.py#L9).
However, there is python2 specific code in the repository. For example:
setup.py
msgpack/fallback.py
tox.ini
test/test_timestamp.py
@pytest.mark.skipif(sys.version_info[0] == 2
test/test_extension.py
Are you interested by a PR to remove them?
The text was updated successfully, but these errors were encountered:
According to pypi page, the python2 support has been dropped with release 1.0.
Read it again.
Sorry, something went wrong.
pip dropped Python 2 support. So I will drop it too. I don't have actual plan for msgpack 1.1 or 2.0. But PR to remove them is welcome.
Drop python2 support (#519)
feec062
The PR removes python2 references and cases. Close #518 Co-authored-by: Inada Naoki <[email protected]>
Successfully merging a pull request may close this issue.
According to pypi page, the python2 support has been dropped with release 1.0.
The main branch in the repository is currently v.1.0.4 release (https://github.com/msgpack/msgpack-python/blob/main/msgpack/__init__.py#L9).
However, there is python2 specific code in the repository. For example:
setup.py
checks for python2msgpack/fallback.py
could be simplifiedtox.ini
test/test_timestamp.py
skip some tests with python2 (@pytest.mark.skipif(sys.version_info[0] == 2
) ;test/test_extension.py
has also a conditionalAre you interested by a PR to remove them?
The text was updated successfully, but these errors were encountered: