From 5e0d83b626f7c31793c6d33eecfb9ae0108e25a0 Mon Sep 17 00:00:00 2001 From: Aymeric Galan Date: Wed, 17 Apr 2024 15:17:16 +0200 Subject: [PATCH] Prepare for minor release 0.1.6 --- .github/workflows/ci-tests.yml | 2 +- .github/workflows/publish-package.yml | 2 +- HISTORY.md | 4 ++++ README.md | 6 +++--- coolest/__init__.py | 12 +++--------- 5 files changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index ab7bfce..be11bf8 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8"] + python-version: ["3.11"] steps: diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 48b62a6..20eed7f 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -97,7 +97,7 @@ jobs: publish-to-testpypi: name: Publish distribution to TestPyPI - if: startsWith(github.ref, 'refs/tags/t') # only publish to TestPyPI on tag pushes (NO DELAY using testpypi github deployment) + if: startsWith(github.ref, 'refs/tags/v') # only publish to TestPyPI on tag pushes (NO DELAY using testpypi github deployment) needs: - build runs-on: ubuntu-latest diff --git a/HISTORY.md b/HISTORY.md index 5539552..2d59b1c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # Official releases +## v0.1.6 (2024-04-17) + +- Minor improvements to PyPI release + ## v0.1.3 (2024-04-17) - First release to PyPI diff --git a/README.md b/README.md index 08d9d37..6db3955 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -COOLEST logo -COOLEST logo +COOLEST logo +COOLEST logo # Standard for Strong Gravitational Lensing Analyses -![PyPi python support](https://img.shields.io/badge/Python-3.8-blue) +![PyPi python support](https://img.shields.io/badge/Python-3.11-blue) [![Tests](https://github.com/aymgal/COOLEST/actions/workflows/ci-tests.yml/badge.svg?branch=main)](https://github.com/aymgal/COOLEST/actions/workflows/ci-tests.yml) [![Coverage Status](https://coveralls.io/repos/github/aymgal/COOLEST/badge.svg)](https://coveralls.io/github/aymgal/COOLEST) [![Documentation Status](https://readthedocs.org/projects/coolest/badge/?version=latest)](https://coolest.readthedocs.io/en/latest/?badge=latest) diff --git a/coolest/__init__.py b/coolest/__init__.py index 8451a65..3eb9eab 100644 --- a/coolest/__init__.py +++ b/coolest/__init__.py @@ -6,20 +6,14 @@ """ # Set the package release version -version_info = (0, 1, 5) +version_info = (0, 1, 6) __version__ = '.'.join(str(c) for c in version_info) # Set the package details -__author__ = 'COOLEST developers' +__author__ = 'Aymeric Galan & COOLEST contributors' __email__ = 'aymeric.galan@gmail.com' __year__ = '2021-2024' -__credits__ = 'COOLEST developers' +__credits__ = 'COOLEST contributors' __url__ = 'https://github.com/aymgal/COOLEST' __description__ = 'Standard for Strong Gravitational Lensing Analyses' - -# Default package properties __license__ = 'GPL-3.0' -__about__ = ('{} Author: {}, Email: {}, Year: {}, {}' - ''.format(__name__, __author__, __email__, __year__, - __description__)) -