Open GoogleCodeExporter opened 9 years ago
Patch welcome whenever you're ready with one.
Original comment by sgk@chromium.org
on 6 Aug 2009 at 6:25
any progress on this?
Original comment by jeroen.j...@gmail.com
on 15 Oct 2011 at 11:14
It's been almost 4 years. Any progress?
Original comment by beatgam...@gmail.com
on 26 Mar 2013 at 8:53
Аny person from google not familiar with python3. As usual one way - make
patch myself.
Original comment by perestor...@gmail.com
on 17 Apr 2013 at 8:39
This problem actual:
http://code.google.com/p/gyp/issues/detail?id=334&thanks=334&ts=1366256817
New issue 2633 by perestoronin@gmail.com: v8 not complile with py3k.
http://code.google.com/p/v8/issues/detail?id=2633
Need porting v8 from obsolete python2 to new version python3.
./2to3 partitallly help, but python2 package compiler, used in v8, removed
from python3, and automatical porting fails:
build/gyp_v8 --depth=. -Dcomponent=shared_library
-Dsoname_version=3.17.16.2 -Dv8_target_arch=x64 -Dconsole=readline -Dwerror=
Traceback (most recent call last):
File "build/gyp_v8", line 50, in <module>
import gyp
File "./build/gyp/pylib/gyp/__init__.py", line 8, in <module>
import gyp.input
File "./build/gyp/pylib/gyp/input.py", line 5, in <module>
from compiler.ast import Const
ImportError: No module named 'compiler'
Original comment by perestor...@gmail.com
on 18 Apr 2013 at 3:49
Would patches need to be backwards compatible with Python2?
Original comment by beatgam...@gmail.com
on 19 May 2013 at 4:05
should be able to just delete the `compiler.` part of that.
Original comment by alex.hel...@gmail.com
on 2 Mar 2014 at 6:51
node-gyp depends on gyp, and lots of Node modules with native dependencies use
node-gyp to build their projects. So this actually has pretty broad
ramifications.
I don't think I'm the right candidate to actually fix this. :( Just raising
awareness of the scope of the issue.
Original comment by konklone
on 10 May 2014 at 5:11
I just want to be sure, what is the reason for the lack of Python 3 support?
Because as a non-Python guy, it looks really lame to me. Python 3.0 was
released in 2008(!!). Not supporting Python 3 is like a Windows app not
supporting Vista and above and only working with XP. It's that bad.
I checked the project members, and, man, Gyp is aparently not some guy's
abandoned weekend project. So what gives?
Original comment by herzscha...@gmail.com
on 26 Jul 2014 at 10:04
I've started a petition, you can sign it there:
https://www.change.org/petitions/google-inc-upgrade-gyp-to-support-phyton-3
Original comment by neuroflo...@gmail.com
on 14 Aug 2014 at 7:43
What is the minimum Python version that must be supported by gyp? The post two
years ago at
https://groups.google.com/d/msg/gyp-developer/tsqTJr4MMZQ/pqjY_jPSl3AJ mentions
that the Chromium build requires Python 2.6 at minimum. Would a patch set that
worked unmodified on Python 2.6, 2.7, and 3.2+ be accepted?
Original comment by j...@garrison.cc
on 27 Aug 2014 at 6:57
FYI Google seems to be on the path to replace GYP with GN:
https://code.google.com/p/chromium/wiki/gn
Original comment by saghul
on 28 Aug 2014 at 8:00
Does anyone know what would need to be done to get a GYP version that works
with python3? I'm willing to tackle the problem as long as I understand what
needs to be done. If all we have to do is make the GYP source code python3
compatible then this seems feasible.
Original comment by neuros...@gmail.com
on 23 Feb 2015 at 3:18
Original issue reported on code.google.com by
techsoftadvanced
on 17 Jun 2009 at 8:52