From 7433d3eee95a2c090eaf49b7df34781b8bd2debd Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 31 Aug 2023 18:00:11 -0400 Subject: [PATCH] 1.4.1 --- conda/meta.yaml | 4 ++-- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index bef05cc..9f9add7 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "1.4.0" %} +{% set version = "1.4.1" %} package: name: opyrability @@ -9,7 +9,7 @@ source: git_rev: {{ version }} build: - script: {{ PYTHON}} -m pip install . -vv + script: python setup.py install --single-version-externally-managed --record=record.txt requirements: host: diff --git a/pyproject.toml b/pyproject.toml index f996abb..52fa8ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "opyrability" -version = "1.4.0" +version = "1.4.1" description = "Process operability analysis in Python" authors = ["Victor Alves"] license = "MIT License" diff --git a/setup.py b/setup.py index e52bc4c..f88de69 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup_kwargs = { 'name': 'opyrability', - 'version': '1.4.0', + 'version': '1.4.1', 'description': 'Process operability analysis in Python', 'author': 'Victor Alves', 'author_email': 'None',