Skip to content

Commit

Permalink
v0.13.1: fix build system & sync deps (#32)
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 3, 2024
2 parents 819cae6 + 7ff408c commit cc2c57b
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-linux.yml

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

14 changes: 12 additions & 2 deletions .gitignore

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

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

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

3 changes: 3 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.

2 changes: 1 addition & 1 deletion README.md

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

2 changes: 1 addition & 1 deletion recipe/build_base.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
$PYTHON -m pip install . --no-deps -vv
PIP_NO_INDEX=True PIP_NO_DEPENDENCIES=True PIP_NO_BUILD_ISOLATION=False PIP_IGNORE_INSTALLED=True PYTHONDONTWRITEBYTECODE=True $PYTHON -m pip install . --no-deps -vv
11 changes: 6 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% set version = "0.13.0" %}
{% set version = "0.13.1" %}

package:
name: seaborn-split
version: {{ version }}

source:
url: https://pypi.io/packages/source/s/seaborn/seaborn-{{ version }}.tar.gz
sha256: 0e76abd2ec291c655b516703c6a022f0fd5afed26c8e714e8baef48150f73598
sha256: bfad65e9c5989e5e1897e61bdbd2f22e62455940ca76fd49eca3ed69345b9179

build:
number: 0
Expand All @@ -30,11 +30,12 @@ outputs:
host:
- python >=3.8
- pip
- flit-core >=3.2,<4
run:
- python >=3.8
- numpy >=1.20,!=1.24.0
- matplotlib-base >=3.3,!=3.6.1
- scipy >=1.3
- matplotlib-base >=3.4,!=3.6.1
- scipy >=1.7
- pandas >=1.2
test:
imports:
Expand All @@ -46,7 +47,7 @@ outputs:
requirements:
run:
- statsmodels >=0.12
- {{ pin_subpackage('seaborn-base', max_pin="x.x.x.x") }}
- {{ pin_subpackage('seaborn-base', exact=True) }}

about:
home: https://seaborn.pydata.org
Expand Down

0 comments on commit cc2c57b

Please sign in to comment.