Skip to content

Conversation

onovy
Copy link

@onovy onovy commented Sep 23, 2016

Fixed unit tests fail on Python 3.5
Added Python 3.5 in Travis CI
Mark Python 3.5 as supported in setup.py

def test_mod(self):
"""
From Py3.5 test suite (post-PEP 461).

The bytes mod code is in _PyBytes_Format() in bytesobject.c in Py3.5.
"""
if sys.version_info[:2] < (3, 5):
raise unittest.SkipTest('bytes % not yet implemented on Py < 3.5')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could also do @unittest.skipIf(bool, msg)

@jdufresne
Copy link
Contributor

You could add Python 3.6 as well as it has since been released.

@Uzume
Copy link

Uzume commented Dec 14, 2017

Pull request #300 also tries to add 3.5 in addition to 3.6, etc.

Fixed unit tests fail on Python 3.5
Added Python 3.5/3.6 in Travis CI
Mark Python 3.6 as supported in setup.py
@jmadler
Copy link
Contributor

jmadler commented Sep 10, 2018

Can you rebase please to bring the latest TravisCI infra fixes in, and get this working?

@onovy
Copy link
Author

onovy commented Oct 24, 2018

all changes already in master. thanks.

@onovy onovy closed this Oct 24, 2018
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 this pull request may close these issues.

5 participants