Skip to content

Commit 98a814b

Browse files
authored
Merge pull request #4 from abmazitov/release/v1.3.1
Release/v1.3.1
2 parents 748d804 + 6580d74 commit 98a814b

File tree

7 files changed

+17
-14
lines changed

7 files changed

+17
-14
lines changed

.ci_support/linux_64_.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cdt_name:
22
- conda
33
channel_sources:
4-
- metatensor
54
- conda-forge
5+
- metatensor
66
channel_targets:
77
- metatensor main
88
docker_image:

.gitattributes

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/conda-build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
3333

3434
- name: Build on Linux
35+
id: build-linux
3536
if: matrix.os == 'ubuntu'
3637
env:
3738
CONFIG: ${{ matrix.CONFIG }}
@@ -60,6 +61,7 @@ jobs:
6061
./.scripts/run_docker_build.sh
6162
6263
- name: Build on macOS
64+
id: build-macos
6365
if: matrix.os == 'macos'
6466
env:
6567
CONFIG: ${{ matrix.CONFIG }}
@@ -81,17 +83,21 @@ jobs:
8183
./.scripts/run_osx_build.sh
8284
8385
- name: Build on windows
86+
id: build-windows
87+
if: matrix.os == 'windows'
8488
shell: cmd
8589
run: |
8690
set "flow_run_id=github_%GITHUB_RUN_ID%"
8791
set "remote_url=https://github.com/%GITHUB_REPOSITORY%"
8892
set "sha=%GITHUB_SHA%"
8993
call ".scripts\run_win_build.bat"
9094
env:
95+
# default value; make it explicit, as it needs to match with artefact
96+
# generation below. Not configurable for now, can be revisited later
97+
CONDA_BLD_DIR: C:\bld
9198
MINIFORGE_HOME: D:\Miniforge
9299
PYTHONUNBUFFERED: 1
93100
CONFIG: ${{ matrix.CONFIG }}
94101
CI: github_actions
95102
UPLOAD_PACKAGES: ${{ matrix.UPLOAD_PACKAGES }}
96-
BINSTAR_TOKEN: ${{ secrets.BINSTAR_TOKEN }}
97-
if: matrix.os == 'windows'
103+
BINSTAR_TOKEN: ${{ secrets.BINSTAR_TOKEN }}

.scripts/build_steps.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.scripts/run_docker_build.sh

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build-locally.py

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

recipe/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{% set name = "pet-mad" %}
2-
{% set version = "1.2.0" %}
2+
{% set version = "1.3.1" %}
33

44
package:
55
name: {{ name|lower }}
66
version: {{ version }}
77

88
source:
99
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/pet_mad-{{ version }}.tar.gz
10-
sha256: a27962290e08da0affcddcb31035ff721d8512b8abda964f77e94417e72ba9b8
10+
sha256: be3661bb606e88239e957a7b7d8d776af7c8cd087b2c025b8254c7361cfc2368
1111

1212
build:
1313
noarch: python
@@ -23,7 +23,7 @@ requirements:
2323
- pip
2424
run:
2525
- python >={{ python_min }}
26-
- metatrain==2025.7
26+
- metatrain==2025.8.1
2727
- huggingface_hub
2828
- platformdirs
2929

0 commit comments

Comments
 (0)