Skip to content

Commit

Permalink
version bump and example to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Aug 21, 2023
1 parent 70b15a3 commit 9ce2d44
Show file tree
Hide file tree
Showing 8 changed files with 233 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v2.4.3, 2023-08-21 -- bugfixes, expose lam in curve, add example
v2.4.2, 2023-07-21 -- bugfixes and remove GPy dependency
v2.4.1, 2023-05-24 -- bugfixes
v2.4.0, 2023-02-13 -- add of kmeans, image warping, and bugfixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ using functional component analysis and regression.

### Installation
------------------------------------------------------------------------------
v2.4.2 is on pip and can be installed using
v2.4.3 is on pip and can be installed using
> `pip install fdasrsf`
or conda
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
# The short X.Y version.
version = '2.4'
# The full version, including alpha/beta/rc tags.
release = '2.4.2'
release = '2.4.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
225 changes: 225 additions & 0 deletions doc/source/example_mvwarping.ipynb

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions doc/source/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ Contents:

time_warping_example.ipynb
fpca_example.ipynb
example_mvwarping.ipynb
curve_example.ipynb
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fdasrsf"
version = "2.4.2"
version = "2.4.3"
description = "functional data analysis using the square root slope framework"
authors = [
{name = "J. Derek Tucker", email = "[email protected]"}
Expand Down Expand Up @@ -42,4 +42,4 @@ documentation = "https://fdasrsf-python.readthedocs.io/en/latest/"

[build-system]
requires = ["setuptools>=46.0", "wheel", "cffi>=1.0.0", "Cython", "oldest-supported-numpy"] # PEP 518 - what is required to build
build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build_sphinx]
project = 'fdasrvf'
version = 2.4
release = 2.4.2
release = 2.4.3
source-dir = doc/source
build-dir = doc/build
all_files = 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def run(self):
cmdclass={'build_ext': build_ext, 'build_docs': build_docs},
ext_modules=extensions,
name='fdasrsf',
version='2.4.2',
version='2.4.3',
packages=['fdasrsf'],
url='http://research.tetonedge.net',
license='LICENSE.txt',
Expand Down

0 comments on commit 9ce2d44

Please sign in to comment.