Skip to content

Commit 9621595

Browse files
committed
Merge branch 'hotfix/1.4.1' #103
2 parents 976e627 + dea3c42 commit 9621595

4 files changed

Lines changed: 5 additions & 19 deletions

File tree

.github/workflows/sphinx-build.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,10 @@ on:
1212
jobs:
1313
docs:
1414
runs-on: ubuntu-latest
15-
strategy:
16-
matrix:
17-
python-version: ['3.8']
1815

1916
steps:
20-
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v2
22-
with:
23-
python-version: ${{ matrix.python-version }}
2417
- name: Checkout MSC
2518
uses: actions/checkout@v2
26-
- name: Checkout chun_codes
27-
uses: actions/checkout@v2
28-
with:
29-
repository: astrochun/chun_codes
30-
path: chun_codes
31-
- name: Install chun_codes
32-
run: |
33-
python setup.py install
34-
working-directory: chun_codes
3519
- name: Sphinx build
3620
uses: ammaraskar/sphinx-action@master
3721
with:

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.0"
13+
version = "1.4.1"
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']

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
sphinx>=3.0
22
sphinx-rtd-theme==0.5.1
33
sphinx-autodoc-typehints==1.11.1
4+
chun-codes

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='Metallicity_Stack_Commons',
8-
version='1.4.0',
8+
version='1.4.1',
99
packages=['Metallicity_Stack_Commons'],
1010
url='https://github.com/astrochun/Metallicity_Stack_Commons',
1111
license='MIT License',
@@ -14,5 +14,6 @@
1414
description='Set of common codes used in metallicity studies that use stacking techniques',
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
17-
install_requires=['numpy', 'astropy', 'matplotlib', 'scipy', 'requests', 'pytest']
17+
install_requires=['numpy', 'astropy', 'matplotlib', 'scipy', 'requests',
18+
'pytest', 'chun-codes']
1819
)

0 commit comments

Comments
 (0)