Skip to content

Commit

Permalink
PyIRoGlass v0.2.1 released!
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahshi committed Sep 24, 2023
1 parent 98ace72 commit 3f63684
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ jobs:
with:
python-version: ${{matrix.python-version}}

- name: Install LaTeX
run: |
sudo apt-get update
sudo apt-get install -y texlive-xetex
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 5 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Change Log
==========

Version 0.2.1
=============
Minimal changes to clean code, fix UnitTesting, and prepare for publication.


Version 0.2.0
=============
Update parameter estimation regions with the guidance of devolatilized spectra, improve functionality.
Expand Down
2 changes: 1 addition & 1 deletion src/PyIRoGlass/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def modelfit(data, uncert, indparams, model, title, nbins=75,
rax.errorbar(binindp, bindata-binmodel, binuncert, fmt='ko', ms=4)
rax.plot([indparams[0], indparams[-1]], [0,0], 'k:', lw=1.5)
rax.tick_params(labelsize=fs-1, direction='in', top=True, right=True)
rax.set_xlabel("Wavenumber $(\mathregular{cm^{-1}})$", fontsize=fs)
rax.set_xlabel("Wavenumber (cm^-1)", fontsize=fs)
rax.set_ylabel('Residual', fontsize=fs)
rax.invert_xaxis()

Expand Down

0 comments on commit 3f63684

Please sign in to comment.