-
-
Notifications
You must be signed in to change notification settings - Fork 276
Release 3.4.4 #696
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
Release 3.4.4 #696
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fix versionadded tags for v3.4.3
re.split("\s*") has changed from splitting on 1 or more spaces in Python 3.6
(with a deprecation warning) to splitting on 0 or more spaces in Python 3.7.
In Python 3.7 this means it splits at every character.
With Python 3.6:
python -c "import re; print(re.split('\s*', '#define H5_VERS_MAJOR 1'))"
/opt/conda/lib/python3.6/re.py:212: FutureWarning: split() requires a non-empty pattern match.
return _compile(pattern, flags).split(string, maxsplit)
['#define', 'H5_VERS_MAJOR', '1']
With Python 3.7b3:
python -c "import re; print(re.split('\s*', '#define H5_VERS_MAJOR 1'))"
['', '#', 'd', 'e', 'f', 'i', 'n', 'e', '', 'H', '5', '_', 'V', 'E', 'R', 'S', '_', 'M', 'A', 'J', 'O', 'R', '', '1', '']
Python 3.7 fix for re.split() in version detection
Remove unused import and fix ImportError with numexpr 2.6.5.dev0
While fixing fall-outs of changes to `numpy.rec.array` (see numpy/numpy#10344) I evidently missed a spot which is now causing trouble. See #664 I think I noted this in the aforementioned PR in a comment. This PR is to make sure that `initRecArray` method produces list of tuples, rather than list of lists, as an argument to `numpy.rec.array` constructor.
MAINT: Fixed test failures with Python 2.7 and NumPy 1.14.3
Include citation in repo
Updating from original project
Changes author to PyTables Developers Team
Contributor
|
Nice work @jsancho-gpl ! |
Member
|
Congrats Sancho! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
release 3.4.4 : maintenance / bugfix release
TODO:
RELEASE-NOTES.txtanddoc/source/release_notes.rstVERSIONto3.4.4(perhaps also in docs?)--heavytest suite on Linux (or Mac)--heavytest suite on Windows.masterv3.4.4MacPython/pytables-wheels)conda-forge/pytables-feedstockAfter release: