Commit Graph

2 Commits

Author SHA1 Message Date
Peter Pearson
9eea1bccc3 fix: replace sys.version_info.major with tuple index and add fallback for subprocess.check_output on Python 2.6
Replace the attribute access `sys.version_info.major` with tuple indexing `sys.version_info[0]` to support Python 2.6, which lacks the `.major` attribute added in 2.7. Additionally, guard the `subprocess.check_output()` call with a version check and provide a fallback using `subprocess.Popen` and `communicate()` for Python 2.6 environments where `check_output` is unavailable.
2015-09-24 09:05:08 +00:00
Bob Nystrom
2544aa74d8 refactor: rename script/ to util/ and remove project/ directory consolidating build tools
Migrate all Makefile references from script/wren.mk to util/wren.mk, update path for wren_to_c_string.py and libuv.py in build rules, and delete the entire project/msvc2013/ directory containing obsolete Visual Studio 2013 project files.
2015-09-22 14:45:58 +00:00