diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml index d08eca1..40c48e0 100755 --- a/.azure-pipelines/azure-pipelines-osx.yml +++ b/.azure-pipelines/azure-pipelines-osx.yml @@ -82,4 +82,4 @@ jobs: displayName: Upload package env: BINSTAR_TOKEN: $(BINSTAR_TOKEN) - condition: not(eq(variables['UPLOAD_PACKAGES'], 'False')) \ No newline at end of file + condition: and(succeeded(), not(eq(variables['UPLOAD_PACKAGES'], 'False'))) \ No newline at end of file diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index d93bb86..d2ac29c 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -112,4 +112,4 @@ jobs: displayName: Upload package env: BINSTAR_TOKEN: $(BINSTAR_TOKEN) - condition: not(eq(variables['UPLOAD_PACKAGES'], 'False')) + condition: and(succeeded(), not(eq(variables['UPLOAD_PACKAGES'], 'False'))) \ No newline at end of file diff --git a/.ci_support/linux_aarch64_python3.6.yaml b/.ci_support/linux_aarch64_python3.6.yaml index bd749a0..8c17b9a 100644 --- a/.ci_support/linux_aarch64_python3.6.yaml +++ b/.ci_support/linux_aarch64_python3.6.yaml @@ -9,7 +9,7 @@ cdt_arch: cdt_name: - cos7 channel_sources: -- conda-forge,c4aarch64,defaults +- conda-forge channel_targets: - conda-forge main docker_image: diff --git a/.ci_support/linux_aarch64_python3.7.yaml b/.ci_support/linux_aarch64_python3.7.yaml index f2c83c0..1d67a05 100644 --- a/.ci_support/linux_aarch64_python3.7.yaml +++ b/.ci_support/linux_aarch64_python3.7.yaml @@ -9,7 +9,7 @@ cdt_arch: cdt_name: - cos7 channel_sources: -- conda-forge,c4aarch64,defaults +- conda-forge channel_targets: - conda-forge main docker_image: diff --git a/.ci_support/linux_aarch64_python3.8.yaml b/.ci_support/linux_aarch64_python3.8.yaml index ea2ca19..c918a89 100644 --- a/.ci_support/linux_aarch64_python3.8.yaml +++ b/.ci_support/linux_aarch64_python3.8.yaml @@ -9,7 +9,7 @@ cdt_arch: cdt_name: - cos7 channel_sources: -- conda-forge,c4aarch64,defaults +- conda-forge channel_targets: - conda-forge main docker_image: diff --git a/README.md b/README.md index 03a80d6..88cba07 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ About ruamel_yaml ================= -Home: https://bitbucket.org/ruamel/yaml +Home: https://yaml.readthedocs.io/en/latest/ Package license: MIT diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 6ce3d4e..e8bd34a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,3 +1,4 @@ +{% set name = "ruamel.yaml" %} {% set version = "0.15.80" %} package: @@ -5,13 +6,13 @@ package: version: {{ version }} source: - url: https://bitbucket.org/ruamel/yaml/get/{{ version }}.tar.gz - sha256: 8529f909d8983a2b80bb3af60e425c418edf54f2fa132d863c43b3353f901203 + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: 4f203351575dba0829c7b1e5d376d08cf5f58e4a2b844e8ce552b3e41cd414e6 patches: - ordereddict_test.patch build: - number: 1000 + number: 1001 no_link: .*\.(pyd|dll) # [win] requirements: @@ -38,7 +39,7 @@ test: - ruamel_yaml.ext._ruamel_yaml about: - home: https://bitbucket.org/ruamel/yaml + home: https://yaml.readthedocs.io/en/latest/ license: MIT license_family: MIT license_file: LICENSE