Skip to content

Commit

Permalink
Prepare for minor release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aymgal committed Apr 17, 2024
1 parent 63eb6ca commit 5e0d83b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
python-version: ["3.11"]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<img src="https://github.com/aymgal/COOLEST/blob/main/images/full_logo.png#gh-light-mode-only" width="600" alt="COOLEST logo" />
<img src="https://github.com/aymgal/COOLEST/blob/main/images/full_logo_dark_bg.png#gh-dark-mode-only" width="600" alt="COOLEST logo" />
<img src="https://raw.githubusercontent.com/aymgal/COOLEST/main/images/full_logo.png#gh-light-mode-only" width="600" alt="COOLEST logo" />
<img src="https://raw.githubusercontent.com/aymgal/COOLEST/main/images/full_logo_dark_bg.png#gh-dark-mode-only" width="600" alt="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)
Expand Down
12 changes: 3 additions & 9 deletions coolest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '[email protected]'
__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__))

0 comments on commit 5e0d83b

Please sign in to comment.