-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates to support IESopt.jl v2.0.0 #16
Merged
Conversation
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
Codecov ReportAttention: Patch coverage is
🚨 Try these New Features:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several significant updates to the documentation and codebase for the
IESopt
project, focusing on configuration, updating processes, and code simplification. Key changes include the addition of new documentation pages, updates to the configuration handling, and the removal of deprecated functionalities.Documentation Updates:
docs/pages/dev/updating.md
to provide information about updating the project between specific versions, including breaking changes and new features in version2.0.0
.configuration.md
file in thedocs/pages/manual/python/
directory, detailing how to configure the project using environment variables and.env
files.docs/index.md
to include new documentation pages [1] [2].Configuration Handling:
Config
class insrc/iesopt/config.py
to manage configuration options using environment variables and.env
files.pyproject.toml
to includepython-dotenv
as a dependency for handling environment variables.Codebase Simplification:
run
function insrc/iesopt/iesopt.py
(because this is now part of the top-level config) [1] [2] [3].IESoptLib
references withIESopt.Assets
insrc/iesopt/iesopt.py
[1] [2].Version Updates:
2.0.0
inpyproject.toml
to reflect the new major release.Removal of Deprecated Functionalities:
log_welcome_msg
function and related code fromsrc/iesopt/julia/general.py
.These changes collectively enhance the project's documentation, streamline configuration management, and simplify the codebase by removing outdated components.