Skip to content
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

Update coloredlogs version #288

Merged
merged 2 commits into from
May 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,15 @@ Description
A full list of changes and detailed notes can be found below:

- Remove deprecated code
- Relax the coloredlogs version
- Update Fortran tutorials for SmartRedis
- Add support for multiple network interface binding in Orchestrator and Colocated DBs

Detailed notes

- Deprecated launcher-specific orchestrators, constants, and ML utilities
were removed. (PR289_)
- Relax the coloredlogs version to be greater than 10.0 (PR288_)
- Update the Github Actions runner image from `macos-10.15`` to `macos-12``. The
former began deprecation in May 2022 and was finally removed in May 2023 (PR285_)
- The Fortran tutorials had not been fully updated to show how to handle return/error
Expand All @@ -41,6 +43,7 @@ codes. These have now all been updated (PR284_)
argument name is still `interface` for backward compatibility reasons. (PR281_)

.. _PR289: https://github.com/CrayLabs/SmartSim/pull/289
.. _PR288: https://github.com/CrayLabs/SmartSim/pull/288
.. _PR285: https://github.com/CrayLabs/SmartSim/pull/285
.. _PR284: https://github.com/CrayLabs/SmartSim/pull/284
.. _PR281: https://github.com/CrayLabs/SmartSim/pull/281
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
psutil>=5.7.2
coloredlogs==10.0
coloredlogs>=10.0
tabulate>=0.8.9
smartredis>=0.4.0
redis==3.5.3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def has_ext_modules(_placeholder):
# Define needed dependencies for the installation
deps = [
"psutil>=5.7.2",
"coloredlogs==10.0",
"coloredlogs>=10.0",
"tabulate>=0.8.9",
"redis-py-cluster==2.1.3",
"redis==3.5.3",
Expand Down