From 353edb145406b16f9cd536618ccddb4d05904157 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 18 Mar 2020 09:57:54 -0300 Subject: [PATCH 1/6] Promote package version to 1.17.4 Signed-off-by: Uilian Ries --- patch_ng.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch_ng.py b/patch_ng.py index 0ccbc82..088fbba 100755 --- a/patch_ng.py +++ b/patch_ng.py @@ -31,7 +31,7 @@ from __future__ import print_function __author__ = "Conan.io " -__version__ = "1.17.3" +__version__ = "1.17.4" __license__ = "MIT" __url__ = "https://github.com/conan-io/python-patch" From 4685111c131175f2b714a7ac1bd56b9a5254dead Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 18 Mar 2020 10:09:27 -0300 Subject: [PATCH 2/6] Add appveyor file Signed-off-by: Uilian Ries --- appveyor.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..12e6c97 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,9 @@ +environment: + + matrix: + - PYTHON: "C:\\Python27" + - PYTHON: "C:\\Python35" + - PYTHON: "C:\\Python38" + +test_script: + - python.exe tests/run_tests.py From 3d2366ae80624a44901a32b0903f2ff072a5eec1 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 18 Mar 2020 10:14:58 -0300 Subject: [PATCH 3/6] Add badge for Appveyor Signed-off-by: Uilian Ries --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 77ce2aa..69e87df 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -[![Build Status](https://travis-ci.org/conan-io/python-patch-ng.svg?branch=master)](https://travis-ci.org/conan-io/python-patch-ng) +[![Build Status Travis CI](https://travis-ci.org/conan-io/python-patch-ng.svg?branch=master)](https://travis-ci.org/conan-io/python-patch-ng) +[![Build status Appveyor](https://ci.appveyor.com/api/projects/status/i4r6lf62slvx82db?svg=true)](https://ci.appveyor.com/project/ConanCIintegration/python-patch-ng) [![PyPI](https://img.shields.io/pypi/v/patch-ng)](https://pypi.python.org/pypi/patch-ng) ## Patch NG (New Generation) From f2c3ef056decca33867877aead5134bb7faab4c7 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 18 Mar 2020 10:17:02 -0300 Subject: [PATCH 4/6] Add appveyor file Signed-off-by: Uilian Ries --- appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 12e6c97..fc97fe8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,9 +1,10 @@ environment: matrix: - - PYTHON: "C:\\Python27" - - PYTHON: "C:\\Python35" - - PYTHON: "C:\\Python38" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PYTHON: "C:\\Python27" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PYTHON: "C:\\Python38" test_script: - python.exe tests/run_tests.py From 49d375659114d8c1a2c17b44ccaa04565aabb785 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 18 Mar 2020 10:19:32 -0300 Subject: [PATCH 5/6] Add appveyor file Signed-off-by: Uilian Ries --- appveyor.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index fc97fe8..d47bfd4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,13 @@ +build: false + environment: + PYTHON_ARCH: "32" - matrix: - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - PYTHON: "C:\\Python27" - - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 - PYTHON: "C:\\Python38" + matrix: + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PYTHON: "C:\\Python27" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PYTHON: "C:\\Python38" test_script: - - python.exe tests/run_tests.py +- python tests/run_tests.py \ No newline at end of file From c200b9e16393bafaf0b2a62082407856a4f20db3 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 18 Mar 2020 10:32:44 -0300 Subject: [PATCH 6/6] Add python x64 on Appveyor Signed-off-by: Uilian Ries --- appveyor.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d47bfd4..1d79ca1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,13 +1,24 @@ build: false environment: - PYTHON_ARCH: "32" matrix: - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 PYTHON: "C:\\Python27" + PYTHON_ARCH: "32" + PYTHON_VERSION: "2.7.x" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PYTHON: "C:\\Python27-x64" + PYTHON_ARCH: "64" + PYTHON_VERSION: "2.7.x" - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 PYTHON: "C:\\Python38" + PYTHON_ARCH: "32" + PYTHON_VERSION: "3.8.x" + - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 + PYTHON: "C:\\Python38-x64" + PYTHON_ARCH: "64" + PYTHON_VERSION: "3.8.x" test_script: - python tests/run_tests.py \ No newline at end of file