Skip to content

Commit 944706a

Browse files
committed
v0.10.0
1 parent c7eeaa9 commit 944706a

File tree

9 files changed

+36
-14
lines changed

9 files changed

+36
-14
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ understand the code.
5151
<img src = "https://jupyterphysscilab.github.io/jupyter_Pandas_GUI/DataSets/plot_GUI.png" style="width:90%;"/>
5252

5353
* `fit_pandas_GUI()`: A GUI with six steps to lead the user through fitting
54-
Pandas data to a line, polynomial, exponential, Gaussian or sine function.
54+
Pandas data to a line, polynomial, simple exponential decay, exponential
55+
decay from an initial value to final value with an x-offset for the
56+
beginning of the decay, Gaussian or sine function.
5557
**Selecting regions of the data set to fit does NOT currently
5658
work in Colab**.
5759

@@ -136,6 +138,14 @@ install -e ../jupyter_Pandas_GUI` in the _Production_
136138
instructions.
137139

138140
## Change Log
141+
* 0.10.0 (2025-6-1)
142+
* BUG Fix: fixes to coloring in fitmodel equations.
143+
* NEW Feature: OffsetExp fit (exponential decay from one value to another,
144+
with an x-offset for start of decay).
145+
* NEW Feature: Using built in lmfit intial guesses where possible.
146+
* Added `Sympy` to requirements to support generating LaTex equations from
147+
Python expressions.
148+
* Updated dependency versions.
139149
* 0.9.3 (2025-2-17)
140150
* BUG Fix: Plot_GUI having intermittent failure to display the plot.
141151
Wrapping `plotly.FigureWidget.show()` in `display(..)` as was done in

docs/pandas_GUI.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ <h2>API Documentation</h2>
6464
</ul>
6565

6666

67-
<footer>jupyter_Pandas_GUI v0.9.4.rc0</footer>
67+
<footer>jupyter_Pandas_GUI v0.10.0</footer>
6868

6969
<a class="attribution" title="pdoc: Python API documentation generator" href="https://pdoc.dev" target="_blank">
7070
built with <span class="visually-hidden">pdoc</span><img
@@ -130,7 +130,9 @@ <h2 id="current-features">Current Features:</h2>
130130

131131
<p><img src = "https://jupyterphysscilab.github.io/jupyter_Pandas_GUI/DataSets/plot_GUI.png" style="width:90%;"/></p></li>
132132
<li><p><code>fit_pandas_GUI()</code>: A GUI with six steps to lead the user through fitting
133-
Pandas data to a line, polynomial, exponential, Gaussian or sine function.
133+
Pandas data to a line, polynomial, simple exponential decay, exponential
134+
decay from an initial value to final value with an x-offset for the
135+
beginning of the decay, Gaussian or sine function.
134136
<strong>Selecting regions of the data set to fit does NOT currently
135137
work in Colab</strong>.</p>
136138

@@ -235,6 +237,16 @@ <h2 id="installation">Installation:</h2>
235237
<h2 id="change-log">Change Log</h2>
236238

237239
<ul>
240+
<li>0.10.0 (2025-6-1)
241+
<ul>
242+
<li>BUG Fix: fixes to coloring in fitmodel equations.</li>
243+
<li>NEW Feature: OffsetExp fit (exponential decay from one value to another,
244+
with an x-offset for start of decay).</li>
245+
<li>NEW Feature: Using built in lmfit intial guesses where possible.</li>
246+
<li>Added <code>Sympy</code> to requirements to support generating LaTex equations from
247+
Python expressions.</li>
248+
<li>Updated dependency versions.</li>
249+
</ul></li>
238250
<li>0.9.3 (2025-2-17)
239251
<ul>
240252
<li>BUG Fix: Plot_GUI having intermittent failure to display the plot.

docs/pandas_GUI/fit_Pandas_GUI.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h2>API Documentation</h2>
4040
</ul>
4141

4242

43-
<footer>jupyter_Pandas_GUI v0.9.4.rc0</footer>
43+
<footer>jupyter_Pandas_GUI v0.10.0</footer>
4444

4545
<a class="attribution" title="pdoc: Python API documentation generator" href="https://pdoc.dev" target="_blank">
4646
built with <span class="visually-hidden">pdoc</span><img

docs/pandas_GUI/new_pandas_column_GUI.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h2>API Documentation</h2>
3737
</ul>
3838

3939

40-
<footer>jupyter_Pandas_GUI v0.9.4.rc0</footer>
40+
<footer>jupyter_Pandas_GUI v0.10.0</footer>
4141

4242
<a class="attribution" title="pdoc: Python API documentation generator" href="https://pdoc.dev" target="_blank">
4343
built with <span class="visually-hidden">pdoc</span><img

docs/pandas_GUI/plot_Pandas_GUI.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h2>API Documentation</h2>
3737
</ul>
3838

3939

40-
<footer>jupyter_Pandas_GUI v0.9.4.rc0</footer>
40+
<footer>jupyter_Pandas_GUI v0.10.0</footer>
4141

4242
<a class="attribution" title="pdoc: Python API documentation generator" href="https://pdoc.dev" target="_blank">
4343
built with <span class="visually-hidden">pdoc</span><img

docs/pandas_GUI/utils.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ <h2>API Documentation</h2>
154154
</ul>
155155

156156

157-
<footer>jupyter_Pandas_GUI v0.9.4.rc0</footer>
157+
<footer>jupyter_Pandas_GUI v0.10.0</footer>
158158

159159
<a class="attribution" title="pdoc: Python API documentation generator" href="https://pdoc.dev" target="_blank">
160160
built with <span class="visually-hidden">pdoc</span><img

docs/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
jupyter>=1.0.0
2-
jupyterlab>=4.1.5
2+
jupyterlab>=4.4.3
33
pandas>=1.5.2
44
numpy>=1.23.0
55
anywidget
66
plotly>=5.5.0
77
kaleido
8-
ipywidgets>=7.6.2
8+
ipywidgets>=8.1.7
99
JPSLUtils>=0.7.0
1010
lmfit>=1.1.0
1111
round-using-error>=1.2.0

setup.py

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

66
setuptools.setup(
77
name="jupyter_Pandas_GUI",
8-
version="0.9.3",
8+
version="0.10.0",
99
description="Pandas expression composers using Jupyter widgets.",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -20,13 +20,13 @@
2020
install_requires=[
2121
# 'python>=3.6',
2222
'jupyter>=1.0.0',
23-
'jupyterlab>=4.1.5',
23+
'jupyterlab>=4.4.3',
2424
'pandas>=1.5.2',
2525
'numpy>=1.23.0',
2626
'anywidget',
27-
'plotly>=5.5.0',
27+
'plotly>=6.0.0',
2828
'kaleido',
29-
'ipywidgets>=7.6.2',
29+
'ipywidgets>=8.1.7',
3030
'JPSLUtils>=0.7.0',
3131
'lmfit>=1.1.0',
3232
'round-using-error>=1.2.0',

0 commit comments

Comments
 (0)