Imported Upstream version 57.2.0 upstream/57.2.0
authorJinWang An <jinwang.an@samsung.com>
Mon, 27 Mar 2023 08:02:34 +0000 (17:02 +0900)
committerJinWang An <jinwang.an@samsung.com>
Mon, 27 Mar 2023 08:02:34 +0000 (17:02 +0900)
.bumpversion.cfg
.github/workflows/main.yml
CHANGES.rst
setup.cfg
setuptools/_distutils/util.py

index 99ebf2f6a7abbbe81beb3b21b7a1c0a2d752ef1a..ac2e2b646e51221558fe1c9dfac2e34595c2501e 100644 (file)
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 57.1.0
+current_version = 57.2.0
 commit = True
 tag = True
 
index cd1969cf1fef924d3609af70645ba654ecb1e254..c0916fa740d9e299a9fbe5efb095284bf0c41a46 100644 (file)
@@ -23,7 +23,13 @@ jobs:
         run: |
           python -m pip install tox
       - name: Run tests
-        run: tox
+        run: tox -- --cov-report xml
+      - name: Publish coverage
+        uses: codecov/codecov-action@v1
+        with:
+          flags: >-  # Mark which lines are covered by which envs
+            ${{ runner.os }},
+            ${{ matrix.python }}
 
   release:
     needs: test
index 3024ed61be287ea3bc3fc834cf6597d0532054f5..ba4a5fbd2f0fa21d271208969f44435e44da74c4 100644 (file)
@@ -1,3 +1,12 @@
+v57.2.0
+-------
+
+
+Changes
+^^^^^^^
+* #2724: Added detection of Windows ARM64 build environments using the ``VSCMD_ARG_TGT_ARCH`` environment variable.
+
+
 v57.1.0
 -------
 
index 25d46103fbe13fbe7a47ae81afc9249dd6c02174..ebb42e472927e6f6ad8fd84492d8fed629a46c18 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -2,7 +2,7 @@
 license_files =
        LICENSE
 name = setuptools
-version = 57.1.0
+version = 57.2.0
 author = Python Packaging Authority
 author_email = distutils-sig@python.org
 description = Easily download, build, install, upgrade, and uninstall Python packages
index 76657d2edd3aa241f21bb487ac3daadf95944be7..4232fd21a2ae58d95ac6de7cfd8e054b398654b7 100644 (file)
@@ -103,6 +103,7 @@ def get_platform():
             'x86' : 'win32',
             'x64' : 'win-amd64',
             'arm' : 'win-arm32',
+            'arm64': 'win-arm64',
         }
         return TARGET_TO_PLAT.get(os.environ.get('VSCMD_ARG_TGT_ARCH')) or get_host_platform()
     else: