Skip to content

Commit

Permalink
fix minor import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
noahfranz13 committed Jul 12, 2024
1 parent 38fcc0f commit 2d105cc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
8 changes: 3 additions & 5 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

# import syncfit
import syncfit
from typing import List
import sys
import os
Expand All @@ -23,7 +23,6 @@
sys.path.insert(0, os.path.abspath("."))
sys.path.insert(0, os.path.abspath("../"))
sys.path.insert(0, os.path.abspath("../src/syncfit")) # needed for autodocs
sys.path.insert(0, os.path.abspath("../src/syncfit/models")) # needed for autodocs

# -- Project information -----------------------------------------------------

Expand All @@ -32,9 +31,8 @@
author = 'Noah Franz, Collin Christy'

# The full version, including alpha/beta/rc tags
from _version import __version__ as _v
release = _v
version = _v
release = syncfit.__version__
version = syncfit.__version__


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ classifiers = [
dependencies = [
"numpy>=1.20",
"matplotlib",
"scipy",
"emcee",
"dynesty"
]
Expand Down
2 changes: 1 addition & 1 deletion src/syncfit/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion src/syncfit/models/thermalsyn_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import numpy as np
from scipy import special
from scipy import optimize
import Constants as C
from . import Constants as C

def a_fun(Theta):
'''Utility function defined in eq. (1), MQ21
Expand Down

0 comments on commit 2d105cc

Please sign in to comment.