Skip to content

Commit

Permalink
juliaup v1.13.0 (#68)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] authored Jan 29, 2024
2 parents 62e123b + efafc2e commit 79e5e12
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 20 deletions.
4 changes: 3 additions & 1 deletion .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
- '10.15'
MACOSX_SDK_VERSION:
- '10.15'
c_compiler:
- clang
c_compiler_version:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
MACOSX_DEPLOYMENT_TARGET:
- '11.0'
MACOSX_SDK_VERSION:
- '11.0'
c_compiler:
- clang
c_compiler_version:
Expand Down
25 changes: 23 additions & 2 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 3 additions & 9 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions .scripts/run_win_build.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
MACOSX_DEPLOYMENT_TARGET: # [osx]
- "10.15" # [osx and x86_64]
- "11.0" # [osx and arm64]
MACOSX_SDK_VERSION: # [osx]
- "10.15" # [osx and x86_64]
- "11.0" # [osx and arm64]
6 changes: 4 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "juliaup" %}
{% set version = "1.12.5" %}
{% set version = "1.13.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/JuliaLang/{{ name }}/archive/v{{ version }}.zip
sha256: 2e7f65fc88e46fc8def4785f722a850537841034c60e76a7c1f5d4264276cbc3
sha256: 83abdb2d9f8af00623fbed1aafa7294ec78bd172439f7ea14a80d2e56982eb87

build:
script:
Expand All @@ -23,6 +23,8 @@ requirements:
- {{ compiler('c') }}
- {{ compiler('rust') }}
- cargo-bundle-licenses
run:
- __osx >={{ MACOSX_DEPLOYMENT_TARGET|default("10.9") }} # [osx]

test:
commands:
Expand Down

0 comments on commit 79e5e12

Please sign in to comment.