Skip to content

Commit

Permalink
Bump pywin32 from 224 to 301 in /rqd (#1611)
Browse files Browse the repository at this point in the history
Bumps [pywin32](https://github.com/mhammond/pywin32) from 224 to 301.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mhammond/pywin32/releases">pywin32's
releases</a>.</em></p>
<blockquote>
<h2>Release 301</h2>
<p><a
href="https://github.com/mhammond/pywin32/blob/1816ac672bdf8a5fe06cee0f7bd387de97f35b98/CHANGES.txt#L9">The
changes</a></p>
<p>If you use pip: <code>pip install pywin32 --upgrade</code></p>
<p>A number of things don't work via pip, so you may choose to install
binaries - but <em>you must choose both the correct Python version and
&quot;bittedness&quot;.</em></p>
<p>Even if you have a 64bit computer, if you installed a 32bit version
of Python you must install the 32bit version of pywin32.</p>
<p>There is one binary per-version, per-bittedness. To determine what
version of Python you have, start Python and look at the first line of
the banner. Compare these 2:</p>
<pre><code>Python 2.7.2+ ... [MSC v.1500 32 bit (Intel)] on win32
Python 2.7.2+ ... [MSC v.1500 64 bit (AMD64)] on win32
                              ^^^^^^^^^^^^^^
</code></pre>
<p>If the installation process informs you that Python is not found in
the registry, it almost certainly means you have downloaded the wrong
version - either for the wrong version of Python, or the wrong
&quot;bittedness&quot;.</p>
<h2>Release 300</h2>
<p>This is the first release to support only Python 3.5 and up -
<em>Python 2 is no longer supported</em>. To celebrate, the build
numbers have jumped to 300! There were significant changes in this
release - you are encouraged to read <a
href="https://github.com/mhammond/pywin32/blob/fd1e69bb2b4cf0ada9667874248d1e8c6b4542dc/CHANGES.txt#L11">CHANGES.txt</a>
carefully.</p>
<p>To download pywin32 binaries you must choose both the correct Python
version and &quot;bittedness&quot;.</p>
<p>Note that there is one download package for each supported version of
Python - please check what version of Python you have installed and
download the corresponding package.</p>
<p>Some packages have a 32bit and a 64bit version available - you must
download the one which corresponds to the Python you have installed.
Even if you have a 64bit computer, if you installed a 32bit version of
Python you must install the 32bit version of pywin32.</p>
<p>To determine what version of Python you have, just start Python and
look at the first line of the banner. A 32bit build will look something
like</p>
<p>Python 3.8.1+ ... [MSC v.1913 32 bit (Intel)] on win32</p>
<p>While a 64bit build will look something like:</p>
<p>Python 3.8.1+ ... [MSC v.1913 64 bit (AMD64)] on win32</p>
<p>If the installation process informs you that Python is not found in
the registry, it almost certainly means you have downloaded the wrong
version - either for the wrong version of Python, or the wrong
&quot;bittedness&quot;.</p>
<h2>Release 228</h2>
<p>To download pywin32 binaries you must choose both the correct Python
version and &quot;bittedness&quot;.</p>
<p>Note that there is one download package for each supported version of
Python - please check what version of Python you have installed and
download the corresponding package.</p>
<p>Some packages have a 32bit and a 64bit version available - you must
download the one which corresponds to the Python you have installed.
Even if you have a 64bit computer, if you installed a 32bit version of
Python you must install the 32bit version of pywin32.</p>
<p>To determine what version of Python you have, just start Python and
look at the first line of the banner. A 32bit build will look something
like</p>
<pre><code>Python 2.7.2+ ... [MSC v.1500 32 bit (Intel)] on win32
</code></pre>
<p>While a 64bit build will look something like:</p>
<pre><code>Python 2.7.2+ ... [MSC v.1500 64 bit (AMD64)] on win32
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mhammond/pywin32/blob/main/CHANGES.txt">pywin32's
changelog</a>.</em></p>
<blockquote>
<h2>Build 301, released 2021-05-30</h2>
<ul>
<li>
<p>Fix some confusion on how dynamic COM object properties work. The old
code was confused, so there's a chance there will be some subtle
regression here - please open a bug if you find anything, but this
should fix <a
href="https://redirect.github.com/mhammond/pywin32/issues/1427">#1427</a>.</p>
</li>
<li>
<p>COM objects are now registered with the full path to pythoncomXX.dll,
fixes
<a
href="https://redirect.github.com/mhammond/pywin32/issues/1704">#1704</a>.</p>
</li>
<li>
<p>Creating a <code>win32crypt.CRYPT_ATTRIBUTE</code> object now
correctly sets <code>cbData</code>.</p>
</li>
<li>
<p>Add wrap and unwrap operations defined in the GSSAPI to the sspi
module
and enhance the examples given in this module.
(<a
href="https://redirect.github.com/mhammond/pywin32/issues/1692">#1692</a>,
Emmanuel Coirier)</p>
</li>
<li>
<p>Fix a bug in <code>win32profile.GetEnvironmentStrings()</code>
relating to environment
variables with an equals sign (<a
href="https://github.com/maxim-krikun"><code>@​maxim-krikun</code></a>
in <a
href="https://redirect.github.com/mhammond/pywin32/issues/1661">#1661</a>)</p>
</li>
<li>
<p>Fixed a bug where certain COM dates would fail to be converted to a
Python
datetime object with <code>ValueError: microsecond must be in
0..999999</code>. Shoutout
to <a href="https://github.com/hujiaxing"><code>@​hujiaxing</code></a>
for reporting and helping reproduce the issue (<a
href="https://redirect.github.com/mhammond/pywin32/issues/1655">#1655</a>)</p>
</li>
<li>
<p>Added win32com.shell.SHGetKnownFolderPath() and related
constants.</p>
</li>
<li>
<p>CoClass objects should work better with special methods like
<strong>len</strong> etc.
(<a
href="https://redirect.github.com/mhammond/pywin32/issues/1699">#1699</a>)</p>
</li>
<li>
<p>Shifted work in win32.lib.pywin32_bootstrap to Python's import system
from
manual path manipulations (<a
href="https://github.com/wkschwartz"><code>@​wkschwartz</code></a> in <a
href="https://redirect.github.com/mhammond/pywin32/issues/1651">#1651</a>)</p>
</li>
<li>
<p>Fixed a bug where win32print.DeviceCapabilities would return strings
containing the null character followed by junk characters.
(<a
href="https://redirect.github.com/mhammond/pywin32/issues/1654">#1654</a>,
<a
href="https://redirect.github.com/mhammond/pywin32/issues/1660">#1660</a>,
Lincoln Puzey)</p>
</li>
</ul>
<h2>Build 300, released 2020-11-14</h2>
<ul>
<li>
<p>Fixed a bug where win32com.client.VARIANT params were returned in the
reverse
order. This only happened when win32com.client.VARIANT was explicitly
used
(ie, not when normal params were passed) For example:</p>
<pre lang="python"><code> arg1 = VARIANT(pythoncom.VT_R4 |
pythoncom.VT_BYREF, 2.0)
    arg2 = VARIANT(pythoncom.VT_BOOL | pythoncom.VT_BYREF, True)
    object.SomeFunction(arg1, arg2)
</code></pre>
<p>after this call, <code>arg1.value</code> was actually the value for
<code>arg2</code>, and
vice-versa (<a
href="https://redirect.github.com/mhammond/pywin32/issues/1303">#1303</a>,
<a
href="https://redirect.github.com/mhammond/pywin32/issues/622">#622</a>).</p>
</li>
<li>
<p>Fixed a bug that Pythonwin had an empty <code>sys.argv</code> (<a
href="https://github.com/kxrob"><code>@​kxrob</code></a> in <a
href="https://redirect.github.com/mhammond/pywin32/issues/1607">#1607</a>)</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/mhammond/pywin32/commits">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pywin32&package-manager=pip&previous-version=224&new-version=301)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/AcademySoftwareFoundation/OpenCue/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 4, 2024
1 parent 35105a8 commit a266ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rqd/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
'grpcio',
'grpcio-tools',
'psutil',
'pywin32==224; platform_system == "Windows"',
'pywin32==301; platform_system == "Windows"',
'wmi==1.5.1; platform_system == "Windows"'
]
)
Expand Down

0 comments on commit a266ef5

Please sign in to comment.