Skip to content

Commit ffdf0bd

Browse files
committed
Merge tag 'v74.1.3'
Bump version: 74.1.2 → 74.1.3
2 parents 56fc311 + 4c27491 commit ffdf0bd

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 74.1.2
2+
current_version = 74.1.3
33
commit = True
44
tag = True
55

NEWS.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v74.1.3
2+
=======
3+
4+
Bugfixes
5+
--------
6+
7+
- Fix cross-platform compilation using ``distutils._msvccompiler.MSVCCompiler`` -- by :user:`saschanaz` and :user:`Avasam` (#4648)
8+
9+
110
v74.1.2
211
=======
312

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backend-path = ["."]
55

66
[project]
77
name = "setuptools"
8-
version = "74.1.2"
8+
version = "74.1.3"
99
authors = [
1010
{ name = "Python Packaging Authority", email = "[email protected]" },
1111
]

setuptools/_distutils/_msvccompiler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def initialize(self, plat_name=None):
284284
f"--plat-name must be one of {tuple(_vcvars_names)}"
285285
)
286286

287-
plat_spec = _get_vcvars_spec(get_host_platform(), get_platform())
287+
plat_spec = _get_vcvars_spec(get_host_platform(), plat_name)
288288

289289
vc_env = _get_vc_env(plat_spec)
290290
if not vc_env:

0 commit comments

Comments
 (0)