Skip to content

Commit

Permalink
set up stable versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Morris committed Jul 8, 2024
1 parent 48d31f9 commit fed572b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
maria
=====

.. image:: ./_static/sky.gif
:scale: 100%
.. image:: ./_static/cloud.gif
:scale: 40%
:alt: StreamPlayer

`Oh, maria blows the stars around / and sends the clouds
Expand Down
4 changes: 2 additions & 2 deletions maria/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = "1.0.0"
__version_tuple__ = version_tuple = (1, 0, 0)
__version__ = version = "1.0.1.dev18"
__version_tuple__ = version_tuple = (1, 0, 1, "dev18")
4 changes: 2 additions & 2 deletions maria/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def normalized_matern(r, nu):
return (
2 ** (1 - nu)
/ sp.special.gamma(nu)
* sp.special.kv(nu, r + 1e-16)
* (r + 1e-16) ** nu
* sp.special.kv(nu, np.sqrt(2 * nu) * r + 1e-16)
* (np.sqrt(2 * nu) * r + 1e-16) ** nu
)


Expand Down
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ dependencies = [
"cmocean",
"dask",
"h5py",
"healpy",
"healpy<1.17",
"matplotlib",
"numpy",
"numpy<2",
"pandas",
"pytz",
"reproject",
"requests",
"scipy",
"scipy<1.14",
"tables",
"tqdm",
]
Expand All @@ -46,6 +46,10 @@ classifiers = [ # Optional
]

[project.optional-dependencies] # Optional
mapmaking = [
"torch",
]

dev = [
"black",
"coverage",
Expand Down

0 comments on commit fed572b

Please sign in to comment.