Skip to content

Commit

Permalink
Merge pull request #29 from regro-cf-autotick-bot/0.0.5_h85ea3f
Browse files Browse the repository at this point in the history
csp v0.0.5
  • Loading branch information
timkpaine authored Jun 27, 2024
2 parents fa817db + 892b2bb commit 4c3563f
Show file tree
Hide file tree
Showing 19 changed files with 37 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .ci_support/linux_64_numpy1.22python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/linux_64_numpy1.22python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/linux_64_numpy1.22python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/linux_64_numpy1.23python3.11.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/linux_64_numpy1.26python3.12.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/osx_64_numpy1.22python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/osx_64_numpy1.22python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/osx_64_numpy1.22python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/osx_64_numpy1.23python3.11.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/osx_64_numpy1.26python3.12.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/win_64_numpy1.22python3.10.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/win_64_numpy1.22python3.8.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/win_64_numpy1.22python3.9.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/win_64_numpy1.23python3.11.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
2 changes: 1 addition & 1 deletion .ci_support/win_64_numpy1.26python3.12.____cpython.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ zip_keys:
- - python
- numpy
zlib:
- '1.2'
- '1'
7 changes: 7 additions & 0 deletions .scripts/build_steps.sh

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

7 changes: 7 additions & 0 deletions .scripts/run_osx_build.sh

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

5 changes: 5 additions & 0 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: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{% set name = "csp" %}
{% set version = "0.0.4" %}
{% set version = "0.0.5" %}

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

source:
url: https://pypi.io/packages/source/{{ name [0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: f08c0ca0a116c4f3fd189453ff0cfd80a8179ee8d6f58e1da536b2d618b6e794
sha256: afe4ea19455fd86bec7bda9fd3fb52a3c029468f8847db033823287e601af1ea

build:
number: 0
# conda-build fails to find .pyd files co-located next to each other whereas the windows
# DLL loader does.
error_overlinking: false # [win]
error_overlinking: false # [win]
script:
- export CSP_USE_VCPKG=0 # [not win]
- {{ PYTHON }} -m pip install . -vv --no-deps # [not win]
Expand Down

0 comments on commit 4c3563f

Please sign in to comment.