Skip to content

Commit 0658754

Browse files
committed
Merge branch 'hotfix/1.4.2' #105
2 parents 9621595 + 07f690b commit 0658754

4 files changed

Lines changed: 7 additions & 12 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,13 @@ jobs:
2020
uses: actions/setup-python@v2
2121
with:
2222
python-version: ${{ matrix.python-version }}
23-
- name: Checkout chun_codes
24-
uses: actions/checkout@v2
25-
with:
26-
repository: astrochun/chun_codes
27-
path: chun_codes
2823
- name: Install dependencies
2924
run: |
3025
python -m pip install --upgrade pip
3126
python -m pip install pytest pytest-cov
3227
- name: Install MSC
3328
run: |
3429
python setup.py install
35-
- name: Install chun_codes
36-
run: |
37-
python setup.py install
38-
working-directory: chun_codes
3930
- name: Test with pytest
4031
run: |
4132
pytest --cov-report term-missing --cov=Metallicity_Stack_Commons tests

Metallicity_Stack_Commons/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
from .logging import log_stdout, log_verbose
1212

13-
version = "1.4.1"
13+
version = "1.4.2"
1414

1515
lambda0 = [3726.18, 4101.73, 4340.46, 4363.21, 4861.32, 4958.91, 5006.84]
1616
line_type = ['Oxy2', 'Balmer', 'Balmer', 'Single', 'Balmer', 'Single', 'Single']

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Set of common codes used in metallicity studies that use the stacking techniques
44
[![GitHub Workflow Status (master)](https://img.shields.io/github/workflow/status/astrochun/Metallicity_Stack_Commons/Python%20package/master?color=blue&label=build%20%28master%29&logo=github)](https://github.com/astrochun/Metallicity_Stack_Commons/actions?query=workflow%3A%22Python+package%22+branch%3Amaster)
55
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/astrochun/Metallicity_Stack_Commons/Python%20package?color=blue&label=build%20%28latest%29&logo=github)](https://github.com/astrochun/Metallicity_Stack_Commons/actions?query=workflow%3A%22Python+package%22)
66
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/astrochun/Metallicity_Stack_Commons/Sphinx%20Docs%20Check?label=docs&color=blue)](https://github.com/astrochun/Metallicity_Stack_Commons/actions?query=workflow%3A%22Sphinx+Docs+Check%22)
7+
[![Read the Docs](https://img.shields.io/readthedocs/metallicity-stack-commons?color=blue&label=RTDs)](https://readthedocs.org/projects/metallicity-stack-commons/builds/)
78
![GitHub top language](https://img.shields.io/github/languages/top/astrochun/Metallicity_Stack_Commons)
89
![GitHub release (latest by date)](https://img.shields.io/github/v/release/astrochun/Metallicity_Stack_Commons)
9-
![GitHub](https://img.shields.io/github/license/astrochun/Metallicity_Stack_Commons?color=blue)
10+
![GitHub](https://img.shields.io/github/license/astrochun/Metallicity_Stack_Commons?color=blue)
11+
12+
Documentation for this code is available on
13+
[Read the Docs](https://metallicity-stack-commons.readthedocs.io/en/latest/).

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='Metallicity_Stack_Commons',
8-
version='1.4.1',
8+
version='1.4.2',
99
packages=['Metallicity_Stack_Commons'],
1010
url='https://github.com/astrochun/Metallicity_Stack_Commons',
1111
license='MIT License',

0 commit comments

Comments
 (0)