Skip to content

Commit

Permalink
Try again to actually release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Dec 1, 2023
1 parent 9d5216e commit 5330b4a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .tools/requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ ruamel.yaml==0.18.5
scipy==1.11.3
sympy==1.12
uncertainties==3.1.7
# ? For caching with dill, unlike the stock PyPI version
cachier@git+https://github.com/blakeNaccarato/cachier@0892f53dc8fd9fb8a7f959305a1a9ec692876dc0
2 changes: 2 additions & 0 deletions .tools/requirements/requirements_both.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
seaborn==0.13.0
# ? Additional testing plugin
pytest-plt==1.1.0
# ? For caching with dill, unlike the stock PyPI version
cachier@git+https://github.com/blakeNaccarato/cachier@0892f53dc8fd9fb8a7f959305a1a9ec692876dc0

# Type checking
pyright==1.1.336
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Pydantic models for boiler projects
- Jupyter notebook namespace helpers for module code and tests
- Common thermal data model fit for boiler projects
- General caching helpers and notebook namespace caching, useful in tests
- General caching helpers and notebook namespace caching, useful in tests (needs extra `pip install cachier@git+https://github.com/blakeNaccarato/cachier@0892f53dc8fd9fb8a7f959305a1a9ec692876dc0`)
- Common paths and helpers for walking project modules, useful in tests
- Useful constructs for warning filtering, especially in tests

Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ dependencies = [
"scipy>=1.11.1",
"sympy>=1.12",
"uncertainties>=3.1.7",
# ? For caching with dill, unlike the stock PyPI version
"cachier@git+https://github.com/blakeNaccarato/cachier@0892f53dc8fd9fb8a7f959305a1a9ec692876dc0",
]
[[project.authors]]
name = "Blake Naccarato, Kwang Jin Kim"
Expand All @@ -45,7 +43,10 @@ Tracker = "https://github.com/blakeNaccarato/boilercore/issues"
output_format = "human_detailed"
code = ["src"]
deps = ["pyproject.toml"]
ignore_undeclared = ["dvc"] # Optional dependency for `boilercore.notebooks.report`
ignore_undeclared = [
"cachier", # Can't specify my fork here for now. Used only in tests
"dvc", # Optional dependency for `boilercore.notebooks.report`
]
ignore_unused = [
"gmpy2", # for faster sympy computations
"nbconvert", # boilercv.pre_repro.export_notebook
Expand Down

0 comments on commit 5330b4a

Please sign in to comment.