From 93208f83a660294e156e1965a51e917e0b8c8908 Mon Sep 17 00:00:00 2001 From: Adrien Delsalle Date: Sat, 13 Jan 2024 16:20:28 +0100 Subject: [PATCH] add max pin on xtensor (#19) bump to 0.3.1 --- environment-dev.yml | 4 ++-- include/libthermo/version.hpp | 4 ++-- pythermo/pythermo/_version.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/environment-dev.yml b/environment-dev.yml index 804005c..c603418 100755 --- a/environment-dev.yml +++ b/environment-dev.yml @@ -7,8 +7,8 @@ dependencies: - ninja - cxx-compiler - gtest - - xtensor - - xsimd + - xtensor>=0.24,<0.24.6 + - xsimd=9.* - tbb-devel - xtensor-python - pybind11 diff --git a/include/libthermo/version.hpp b/include/libthermo/version.hpp index 131ac42..4188812 100644 --- a/include/libthermo/version.hpp +++ b/include/libthermo/version.hpp @@ -8,8 +8,8 @@ #define LIBTHERMO_VERSION_HPP #define LIBTHERMO_VERSION_MAJOR 0 -#define LIBTHERMO_VERSION_MINOR 2 -#define LIBTHERMO_VERSION_PATCH 0 +#define LIBTHERMO_VERSION_MINOR 3 +#define LIBTHERMO_VERSION_PATCH 1 #define __LIBTHERMO_STRINGIZE_IMPL(s) #s #define __LIBTHERMO_STRINGIZE(s) __LIBTHERMO_STRINGIZE_IMPL(s) diff --git a/pythermo/pythermo/_version.py b/pythermo/pythermo/_version.py index 8750e9a..0f60a47 100644 --- a/pythermo/pythermo/_version.py +++ b/pythermo/pythermo/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 2, 0) +version_info = (0, 3, 1) __version__ = ".".join(map(str, version_info))