Skip to content
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

Updating regex used to split sphinx version string. #2703

Merged
merged 1 commit into from Jan 5, 2014
Merged

Updating regex used to split sphinx version string. #2703

merged 1 commit into from Jan 5, 2014

Commits on Jan 4, 2014

  1. Updating regex used to split sphinx version string.

    The latest stable sphinx version string is '1.2+'.
    The regex pattern '[a-z]' fails to match the '+' character
    leading to a `ValueError` being raised when it attempts to
    cast '2+' to an int. Replacing '[a-z]' with '[^0-9]' resolves this.
    the-real-droop committed Jan 4, 2014
    Configuration menu
    Copy the full SHA
    b7812ee View commit details
    Browse the repository at this point in the history