pitrou commented on pull request #7656: URL: https://github.com/apache/arrow/pull/7656#issuecomment-655426358
The Python `unicodedata` module gives you the Unicode spec version: ``` Python 3.7.5 (default, Nov 7 2019, 10:50:52) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import unicodedata >>> unicodedata.unidata_version '11.0.0' ``` ``` Python 3.8.0+ (heads/3.8:fe934e1d03, Nov 2 2019, 16:21:38) [GCC 7.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import unicodedata >>> unicodedata.unidata_version '12.1.0' ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
