-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v3.2.2 dev see changelog.rst for changes * some changes, see changelog.rst * v3.3.0 see change_log.rst * v3.3.1 see change_log.rst * bump version to 3.3.2; see changelog * bump version to 3.3.3; update changelog with new features and fixes * add Read the Docs configuration and documentation requirements
- Loading branch information
1 parent
f054055
commit 8b8ab2a
Showing
89 changed files
with
137,684 additions
and
41,930 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: "2" | ||
|
||
build: | ||
os: "ubuntu-22.04" | ||
tools: | ||
python: "3.10" | ||
|
||
python: | ||
install: | ||
- requirements: docs/requirements.txt | ||
|
||
sphinx: | ||
configuration: docs/conf.py |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = '3.3.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
__all__ = ["load_lightcurves", "load_rvs", "fit_setup", "run_fit", "create_configfile","load_configfile","fit_configfile"] | ||
|
||
from ._classes import load_lightcurves, load_rvs, fit_setup, load_result, __default_backend__ | ||
from ._classes import (load_lightcurves, load_rvs, fit_setup, load_result, | ||
get_parameter_names, compare_results, __default_backend__) | ||
from .conf import create_configfile, load_configfile,fit_configfile | ||
from .fit_data import run_fit | ||
from .VERSION import __version__ | ||
|
||
# from os import path | ||
# here = path.abspath(path.dirname(__file__)) | ||
# with open(path.join(here, 'VERSION.dat')) as version_file: | ||
# __version__ = version_file.read().strip() | ||
|
||
from os import path | ||
here = path.abspath(path.dirname(__file__)) | ||
with open(path.join(here, 'VERSION.dat')) as version_file: | ||
__version__ = version_file.read().strip() |
Binary file modified
BIN
+336 Bytes
(180%)
CONAN3/__pycache__/__init__.cpython-38.pyc
100755 → 100644
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.