Skip to content

Commit

Permalink
* updated Example.ipynb, disabled config loader debug message (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
o-murphy authored Apr 6, 2024
1 parent 5f5176a commit 564a6f5
Show file tree
Hide file tree
Showing 4 changed files with 886 additions and 62 deletions.
939 changes: 882 additions & 57 deletions Example.ipynb

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions py_ballisticcalc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ def find_pybc_toml(start_dir=os.getcwd()):
if (filepath := find_pybc_toml()) is None:
find_pybc_toml(os.path.dirname(__file__))

logger.info(f"Found {os.path.basename(filepath)} at {os.path.dirname(filepath)}")
print(f"Found {os.path.basename(filepath)} at {os.path.dirname(filepath)}")
logger.debug(f"Found {os.path.basename(filepath)} at {os.path.dirname(filepath)}")

with open(filepath, "rb") as fp:
_config = tomllib.load(fp)
Expand Down
2 changes: 1 addition & 1 deletion py_ballisticcalc_exts/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "py_ballisticcalc.exts"
version = "2.0.0b5"
version = "2.0.0"

authors = [
{ name="o-murphy", email="thehelixpg@gmail.com" },
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "py_ballisticcalc"
version = "2.0.0b5"
version = "2.0.0"

authors = [
{ name="o-murphy", email="thehelixpg@gmail.com" },
Expand Down Expand Up @@ -54,6 +54,6 @@ exclude = ["py_ballisticcalc_exts*"]


[project.optional-dependencies]
exts = ['py_ballisticcalc.exts==2.0.0b5']
exts = ['py_ballisticcalc.exts==2.0.0']
lint = ['pylint', 'flake8']
charts = ['matplotlib', 'pandas']

0 comments on commit 564a6f5

Please sign in to comment.