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

0.12.0 release #30

Merged
merged 5 commits into from
Apr 14, 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
9 changes: 4 additions & 5 deletions .azure-pipelines/azure-pipelines-linux.yml

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

7 changes: 7 additions & 0 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
c_stdlib:
- sysroot
c_stdlib_version:
- '2.12'
cdt_name:
- cos6
channel_sources:
Expand All @@ -6,3 +10,6 @@ channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
zip_keys:
- - c_stdlib_version
- cdt_name
25 changes: 23 additions & 2 deletions .gitignore

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

16 changes: 9 additions & 7 deletions .scripts/build_steps.sh

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

4 changes: 2 additions & 2 deletions .scripts/logging_utils.sh

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

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

5 changes: 2 additions & 3 deletions README.md

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

5 changes: 3 additions & 2 deletions build-locally.py

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

22 changes: 11 additions & 11 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
{% set name = "orix" %}
{% set version = "0.11.1" %}
{% set version = "0.12.0" %}
{% set temporary_version = "0.12" %} # NB!!! Remove this on next release after 0.12.0!!!

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ab4c52d06cdc015347bc2025b67f7a3c0b9c419ec1b74e25a579fad8f13546a0
# url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ temporary_version }}.tar.gz
sha256: 1196d9923d77f6d878fd9142d05514e135844ea6ee4b4dc426e28f97dabd7d26

build:
noarch: python
number: 1
number: 0
script: '{{ PYTHON }} -m pip install . -vv '

requirements:
host:
- pip
- python >=3.7
- python >=3.8
run:
- python >=3.7
- python >=3.8
- dask-core
- diffpy.structure >=3
- diffpy.structure >=3.0.2
- h5py
- matplotlib-base >=3.3
- matplotlib-base >=3.5
- matplotlib-scalebar
- numba
- numpy
Expand All @@ -38,7 +40,6 @@ test:
- pytest
imports:
- orix
- orix.base
- orix.crystal_map
- orix.data
- orix.io
Expand All @@ -64,8 +65,7 @@ about:
description: |
orix defines objects and functions for the analysis of orientations
represented as quaternions or 3D rotation vectors accounting for crystal
symmetry. Functionality builds primarily on NumPy and Matplotlib and is
heavily inspired by the MATLAB package MTEX.
symmetry. Functionality builds primarily on NumPy and Matplotlib.
dev_url: https://github.com/pyxem/orix
doc_url: https://orix.readthedocs.io/en/stable

Expand Down