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

🚀 pyglotaran v0.5.0 #11

Merged
merged 5 commits into from
Dec 2, 2021
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
5 changes: 5 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.

5 changes: 1 addition & 4 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
cdt_name:
- cos6
channel_sources:
- conda-forge,defaults
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-comp7
zip_keys:
- - cdt_name
- docker_image
1 change: 1 addition & 0 deletions .gitattributes

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

6 changes: 4 additions & 2 deletions .scripts/build_steps.sh

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

7 changes: 5 additions & 2 deletions .scripts/run_docker_build.sh

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

3 changes: 2 additions & 1 deletion README.md

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

5 changes: 5 additions & 0 deletions build-locally.py

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

15 changes: 8 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pyglotaran" %}
{% set version = "0.4.1" %}
{% set version = "0.5.0" %}
{% set download_name = "pyglotaran" %}

package:
Expand All @@ -8,13 +8,13 @@ package:

source:
url: https://pypi.io/packages/source/{{ download_name[0] }}/{{ download_name }}/{{ download_name }}-{{ version }}.tar.gz
sha256: 5e70f99a6b808bc31b1f9b069bdbf98447a5e2417bce12c89cc5a86c200de1f3
sha256: 4cc8e1ada048d92551f92566cf810ac6f4545eb27183dca6c096023e1588cead

build:
number: 0
noarch: python
entry_points:
- glotaran=glotaran.cli.main:glotaran
- glotaran=glotaran.cli.main:main
script: {{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv

requirements:
Expand All @@ -27,14 +27,15 @@ requirements:
- click >=7.0
- netcdf4 >=1.5.3
- numba >=0.52
- numpy >=1.20.0
- numpy >=1.20.0,<1.21
- pandas >=0.25.2
- pyyaml >=5.2
- rich >=10.9.0
- ruamel.yaml >=0.17.17
- scipy >=1.3.2
- sdtfile >=2020.8.3
- setuptools >=41.2
- tabulate >=0.8.8
- xarray >=0.16.2
- xarray !=0.20.0,!=0.20.1,>=0.16.2

test:
imports:
Expand All @@ -43,7 +44,7 @@ test:
- glotaran
commands:
- glotaran --help
- pytest -k "not IrfDispersion" glotaran
- pytest glotaran
requires:
- pytest
- ipython
Expand Down