OK, you are using CPython then. That is the original and official
implementation of Python. As you may know, there are two major branches
of CPython. Python 3.x was intended to make deep, incompatible changes
to improve or fix long-known problems or limitations in 2.x. Therefore,
some code that works on 2.7 won't work on 3.2 and vice-versa. Many
projects still only work on 2.x, apparently including jenkinsapi
according to the pypi listing.
I'm not sure what your exact problem has been, but you should try using
jenkinsapi with Python 2.7. It is possible to have more than one version
of Python installed so that different programs can use one or the other.
I haven't done so on Windows, but I have multiple versions built from
source on Unix-like systems. It looks like it should be even easier on
Windows because the official installers install to directories including
version number. The following guide looks like it should be helpful. I
strongly recommend using pip and virtualenv, which HOWTO also covers.
<URL:
http://docs.python-guide.org/en/latest/starting/install/win/>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit
>
https://groups.google.com/d/topic/jenkinsci-users/wn0dLXNgWqE/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
>
jenkinsci-use...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
--
Jonathan Rogers