comtypes
comtypes copied to clipboard
Future of this package
This package is very useful, thanks a lot for providing it! I would like to use it in a large open-source project (3D Slicer) but I'm not sure if I can rely on it in the long term, due to the followings:
- It seems that there have been no new tags (and releases on PyPI) for almost two years
- It is still not a native Python3, but patched using 2to3
- Large backlog of open issues and 10+ open pull requests
Could somebody provide information about current status and future plans for this package?
I see that there have been some recent commits, so I still have some hope. Thanks in advance!
Hi Andras. I know of no long term plans for this package, except perhaps for users keeping it running for their use cases. The package can live on for a while in this self-service mode, but nice-to-haves like native python 3 support are not likely be prioritized.
I do virtually no work on this package, as my job and personal life no longer involve coding. @vasily-v-ryabov does the bulk of reviewing and committing. I'd welcome a discussion about building a critical mass of contributors and admins for this project.
@cfarrow thanks a lot for the quick answer. @vasily-v-ryabov do you have any comments?
Hi guys, I have some plans on diving deeper into the comtypes source code with potential improvements. My interest is mostly comtypes' usage in pywinauto as a dependency (we're already using it for few years). I'll try to explain my immediate interests and nice-to-have things which I can support as a reviewer.
- I'm not pursuing better Python 2.x/3.x support, but can review/discuss it.
- Running all unit tests on AppVeyor would be more helpful for potential contributors. It is also nice to have.
- The most critical for now is new wheel versions support which is reported in both projects already. Hope to take this task in nearest two months if nobody takes care of it. It could be a reason for 1.1.8 version update.
- I do want to debug some issues with 32-bit/64-bit Python / COM libraries that we have in pywinauto's backlog. This is medium priority for me, but there are a lot of high priority tasks in pywinauto which is also a hobby project in its turn. :)
- Also I'm interested in more convenient packaging into a single executable (low priority for now, may be raised in the future) so I may think about on-the-fly code generation into a memory without saving to cache file or something like that.
No more global things for now.
A new release would be important, because if there are no new releases then fixes and improvements will not get to users. It would be also important to merge pull request and review issues. Setting up AppVeyor would be nice because then pull requests could be more confidently merged.
If there is a consensus that Python2 support can be dropped then updating the syntax for Python3 should not be hard, especially if there are automated tests. I can help with this, as we try to avoid depending libraries that are not updated to Python3.
pywinauto is not planning to drop Py2.7 support. So I vote against it in comtypes as well. Also I'd prefer to keep comtypes a pure Python library (without any dependencies). We may think about six usage only, but I'm not sure it's so necessary.
pywinauto is not planning to drop Py2.7 support
My understanding is that projects are actively encouraged to drop Python2 support before the end of 2020 to reduce frictions in the Python ecosystem (https://python3statement.org/). Anyway, if you are ready to pull the plug on Python2, then I'm ready to help with the update.
I think it would be easy to make better Py2/Py3 support with already working AppVeyor tests. So making better CI is a fundamental task for further progress. Currently it is implemented as python setup.py test command which looks a bit old fashioned. And this command is not running on AppVeyor due to some failures in the full test set. I added some installation tests to AppVeyor a while ago. I'd appreciate if this work was continued.
I just wanted to contribute one user's voice to this discussion.
- I vote for the quote below. My use case is packaging apps using PyOxidizer. The apps depend on comtypes. I haven't gotten far enough down the rabbit hole of getting it to work to know whether comtypes needs to change for me to use PyOxidizer. I just wanted to let you know that's a use case I care about.
Also I'm interested in more convenient packaging into a single executable (low priority for now, may be raised in the future) so I may think about on-the-fly code generation into a memory without saving to cache file or something like that.
- I care about CI/automated testing because it would give me confidence in comtypes' reliability, which matters a lot for my apps.
- On Python 2/3 in response to the quote below: Since Python 2 has died, perhaps it would be better to use
futurethansix. Puttingfuture; python_version <= "2.7"insetup.py'sinstall_requireswould burden the few remaining Python 2 users rather than the mass of Python 3 users.
We may think about six usage only, but I'm not sure it's so necessary.
Even if there's no larger changes to the project done, it would be really great if https://github.com/enthought/comtypes/pull/172 (or something equivalent) could be integrated and a new release could be done. Currently this project is randomly failing on Windows with new Python 3 versions which is causing issues with pywinauto. (which depends on this project for UIAutomation support) Afaik many other UI automation tools also use Windows UIAutomation through comtypes so they have the same problem.
Please let Python 2 die!
IMHO debating killing Python 2 is futile if the person who is more or less maintaining this project intents on keeping the support for now. This should not and must not mean halting improving the quality of this project on Python 3 though.
comtypes==1.1.8 is out.
A long time has passed since this issue was posted.
And now,
comtypes==1.1.11has been released and is coded Python3 native.- while still being backward compatible to 2.7
- AppVeyor CI in each Python version now runs on PRs to the
mainbranch.- it is only environment-independent, so Excel, Word, and other env-dependent testings are excluded.
As I planned in #327, I am trying to tie the comtypes type definition system into Python's type hinting system.
- It is possible to write type hints in versions where
typingor inline (variable or function) annotations are not supported(see PEP561 and PEP484).
I think it is important to once again discuss plans in the future, and this issue is a good place to discuss it.
- For example, it has been more than three years since Python 3.4 EOL. It is longer than since sunset Python 2.
What are participants thoughts on this now?
Removing Py3.4 is OK to me. Even if someone has legacy Python 3.4 environment, there is a very low risk something is broken in comparison with 3.5 or even 3.6. But keeping Py2.7 covers more legacy users in my opinion. I would remove Py2.7 after 1 more year of support which shouldn't bother all us so much. For example, we can release comtypes 1.1.13 and 1.1.14 with Py2.7 support and then release comtypes 1.2.0 with Py3.6+ support only. So type hints are natively supported from some moment without any additional efforts.
@vasily-v-ryabov
I agree with your suggestion to support only Py 3.6+ when dropping Py 2.7.
With Py3.6+, we can use the built-in typing.
And enum module is also supported, which may be able to provide new features related to enumerations.
I understood that it will be about a year later we release the version of Py2.7 dropped.
I will develop this package according to that plan.
Hello members, collaborators and contributors(including @cfarrow, @jaraco, @vasily-v-ryabov and @cmin764)!
I would like to put more efforts into comtypes, including the introduction of type annotations and supporting enumerations in the future.
I would like to be a collaborator on this project.
Any opinions would be appreciated.
@cfarrow @jaraco I think merge/maintainer permissions make sense for @junkmd. If there are no objections, I will add him as collaborator in next 2 days.
I support this.
On Mon, Nov 21, 2022, 10:17 AM Vasily Ryabov @.***> wrote:
@cfarrow https://github.com/cfarrow @jaraco https://github.com/jaraco I think merge/maintainer permissions make sense for @junkmd https://github.com/junkmd. If there are no objections, I will add him as collaborator in next 2 days.
— Reply to this email directly, view it on GitHub https://github.com/enthought/comtypes/issues/216#issuecomment-1322469060, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAGNU7TK7DDC3NB3CNAMRPLWJO4EJANCNFSM4PF6YPBQ . You are receiving this because you were mentioned.Message ID: @.***>
@junkmd invitation is sent. Welcome to the club! :)
@vasily-v-ryabov @cfarrow
Thank you very much!:smile:
I added the good first issue tag as my first work as a collaborator.
I hope to see more newcomers in this community.
I triaged some issues in my free time this weekend. I closed issues that are currently resolved and issues that have not seen movement for several years.
But it is very voluminous, so It is taking time to do "issue inventory".
I plan to make some progress on this little by little.
Today I had free time because I was on vacation for the COVID-19 vaccination.
I sorted out the remaining issues, currently under 100.
I think it is important for the community to make sure that newcomers are not put off by the number of issues.
@cfarrow @vasily-v-ryabov
We have included issues on 32-64bit and issues on VARIANT with typecode VT_ARRAY | BT_BSTR in the scope of milestones for the next release.
https://github.com/enthought/comtypes/milestone/3
However, these are no activities for resolve them recently.
It seems to me that it is better to release a new version that includes the changes of npsupport(it made no longer backward compatible), adding type-annotations, and some refactoring, and excludes #80, #347, and #193.
I think it is necessary to release it once to also notify users of the drop_py2 plan.
If you can give me the admin rights to PyPI, I will release this after the new year vacations. https://pypi.org/user/junkmd/
About #80, #347, and #193, I think they depend on the contributors who want to resolve these.
Of course, I intend to do that there will be no conflicts when we merge drop_py2 to master in the future.
OK, I moved all 3 issues and 1 more to 1.3.0 milestone for now. Maybe they will move to 1.3.1 or even later milestones depending on the available resources. I think it's time to check the change log and maybe other related things. I can release 1.2.0 to PyPI in January, no problem. Maybe I'll even have time to release it in December, though it adds more risk to break something during holidays. :)
Understood. Thank you for your effort and planning. I hope you enjoy the holidays without any risks.
@vasily-v-ryabov
When do you plan to release 1.2.0?
@junkmd sorry for disappearing for a long time. I can make a release at the first half of May.
@vasily-v-ryabov Thank you for the reply. I see.
Is there anything I can do before or after this release?
Sorry, I just get back to open source activities. If you have time to quickly update CHANGES.txt, that would be nice. If not, I will try to find time tomorrow.