[bumpversion]
-current_version = 57.1.0
+current_version = 57.2.0
commit = True
tag = True
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
+v57.2.0
+-------
+
+
+Changes
+^^^^^^^
+* #2724: Added detection of Windows ARM64 build environments using the ``VSCMD_ARG_TGT_ARCH`` environment variable.
+
+
v57.1.0
-------
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
'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: