Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

juliaup v1.13.0 #68

Merged
merged 5 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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