-
Notifications
You must be signed in to change notification settings - Fork 20
chore: allow pywin32 >=307 #162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: allow pywin32 >=307 #162
Conversation
f28323d to
c2b8cc4
Compare
pyproject.toml
Outdated
| "pyyaml ~= 6.0", | ||
| "jsonschema >= 4.17.0, == 4.*", | ||
| "pywin32 == 308; platform_system == 'Windows'", | ||
| "pywin32 >=307,<309; platform_system == 'Windows'", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reason that we actually need the < 309?
The parts of PyWin32 that this library uses can probably reasonably be expected to be stable, and libraries that have more flexible dependency specifications are easier to consume.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are no reasons that I know of! Updated!
103a895 to
c0c6875
Compare
Signed-off-by: Joel Wong <[email protected]>
c0c6875 to
1edd18a
Compare
|
This matches the choice in OpenJobDescription/openjd-adaptor-runtime-for-python#162
This matches the choice in OpenJobDescription/openjd-adaptor-runtime-for-python#162 Signed-off-by: Mark Wiebe <[email protected]>
This matches the choice in OpenJobDescription/openjd-adaptor-runtime-for-python#162 Signed-off-by: Mark Wiebe <[email protected]>
Signed-off-by: Joel Wong <[email protected]> Signed-off-by: Justin Blagden <[email protected]>



What was the problem/requirement? (What/Why)
Only pywin32 version 307 is available in Conda Forge right now. This resulted in our sample Conda recipes not working for the latest version of openjd-adaptor-runtime]
What was the solution? (How)
Allow pywin32 version 307 and up.
What is the impact of this change?
Customers will be able to build sample Conda recipes against the latest version of openjd-adaptor-runtime
How was this change tested?
I ran the CI runner tests explicitly against pywin32 307 here: #163
Was this change documented?
No, N/A
Is this a breaking change?
No
Does this change impact security?
No
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.