From d6fa13aa53c05388f9118bd7bfe01beff8d10a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Meg=C3=ADas?= <109989219+andresmegias@users.noreply.github.com> Date: Thu, 23 Feb 2023 17:52:54 +0100 Subject: [PATCH] Add files via upload --- meta.yaml | 6 +++--- pyproject.toml | 4 ++-- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/meta.yaml b/meta.yaml index ebdb134..fcbbfe6 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,5 +1,5 @@ {% set name = "richvalues" %} -{% set version = "1.2.1" %} +{% set version = "1.2.2" %} package: name: "{{ name|lower }}" @@ -7,7 +7,7 @@ package: source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" - sha256: a84f636bc683373601d7b0f28cc1714879bc13454cba4eab92d20e7751bd2679 + sha256: dd10f5363ea915e570d5030e429087689519d39cac20fea4e6ff8e5697f4ed17 build: number: 0 @@ -32,7 +32,7 @@ about: license: BSD-3-Clause license_family: BSD license_file: LICENSE - summary: "Python library for dealing with uncertainties and upper/lower limits" + summary: "Python library for working with uncertainties and upper/lower limits" doc_url: dev_url: diff --git a/pyproject.toml b/pyproject.toml index fb598d4..20aca69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta" [project] name = "richvalues" -version = "1.2.1" -description = "Python library for dealing with uncertainties and upper/lower limits" +version = "1.2.2" +description = "Python library for working with uncertainties and upper/lower limits" license = {file="LICENSE"} authors = [{name="Andrés Megías Toledano"}] readme = "README.md" diff --git a/setup.py b/setup.py index ad5e599..7931034 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ setuptools.setup( name = 'richvalues', - version = '1.2.1', + version = '1.2.2', license = 'BSD-3-Clause', author = 'Andrés Megías Toledano', - description = 'Python library for dealing with uncertainties and upper/lower limits', + description = 'Python library for working with uncertainties and upper/lower limits', long_description = long_description, long_description_content_type = 'text/markdown', packages = setuptools.find_packages('./'),