Skip to content
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
16 changes: 8 additions & 8 deletions .azure-pipelines/azure-pipelines-linux.yml

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

16 changes: 8 additions & 8 deletions .azure-pipelines/azure-pipelines-osx.yml

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

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
numpy:
- '1.21'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.10.* *_cpython
target_platform:
- linux-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
numpy:
- '1.21'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.8.* *_cpython
target_platform:
- linux-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
numpy:
- '1.21'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.9.* *_cpython
target_platform:
- linux-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
numpy:
- '1.23'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.11.* *_cpython
target_platform:
- linux-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
- '1.21'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.10.* *_cpython
target_platform:
- osx-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
- '1.21'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.8.* *_cpython
target_platform:
- osx-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
- '1.21'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.9.* *_cpython
target_platform:
- osx-64
zip_keys:
- - python
- numpy
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ channel_targets:
- conda-forge main
macos_machine:
- x86_64-apple-darwin13.4.0
numpy:
- '1.23'
pin_run_as_build:
python:
min_pin: x.x
Expand All @@ -14,3 +16,6 @@ python:
- 3.11.* *_cpython
target_platform:
- osx-64
zip_keys:
- - python
- numpy
32 changes: 16 additions & 16 deletions README.md

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

9 changes: 4 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@ source:
sha256: {{ sha256 }}

build:
number: 2
number: 3
skip: true # [win]
requirements:
host:
- python
- pip
- pyjulia >=0.6.0
- julia
- numpy
# temporarily rebuilding with newest numpy because PyCall.jl ends up
# reinstalling it and we want to avoid spamming ClobberWarnings
# TODO: remove this as soon as numpy does not get spuriously installed here anymore
- numpy >=1.24.3
- numpy >=1.14.0
- pandas
- sympy
- scikit-learn >=1.0.0
Expand Down Expand Up @@ -50,9 +51,7 @@ test:
commands:
- pip check
- julia --project=@pysr-{{ version }} -e "using PyCall, SymbolicRegression, ClusterManagers"
- python -c 'from pysr.sr import init_julia; init_julia()'
- python -c 'import pysr; pysr.install(); from pysr.sr import init_julia; init_julia()'
- python -c 'import tempfile; tempenv = tempfile.mkdtemp(); import pysr; pysr.install(tempenv); from pysr.sr import init_julia; init_julia(tempenv)'
- python -m pysr.test main

about:
home: https://github.com/MilesCranmer/PySR
Expand Down