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

added tabulate as requirement #1366

Merged
merged 3 commits into from
Nov 29, 2024
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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ CK consists of several sub-projects:

* [Artifact Evaluation](https://cTuning.org/ae) - automating artifact evaluation and reproducibility initiatives at ML and systems conferences.

### Deprecated and archived projects

* [CM-MLOps](cm-mlops) - now [CM4MLOps](cm4mlops)
* [CK automation framework v1 and v2](ck) - now [CM](cm)


### License
Expand Down
3 changes: 3 additions & 0 deletions ck/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
behind CK in this [ACM TechTalk](https://www.youtube.com/watch?v=7zpeIVwICa4)
and the [journal article](https://doi.org/10.1098/rsta.2020.0211).**

We keep this directory for backwards compatibility to let users reproduce past projects relying on this repository.


<br>
<br>
<br>
Expand Down
2 changes: 2 additions & 0 deletions cm-mlops/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**This repository is archived. In April 2024, we have separated this CM repo from the CM framework
and moved it to a [standalone mlcommons@cm4mlops repository](https://github.com/mlcommons/cm4mlops/tree/dev)
following the suggesion from our users and MLCommons members.**

We keep this directory for backwards compatibility to let users reproduce past projects relying on this repository.
3 changes: 3 additions & 0 deletions cm/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## V3.4.4.1
- added tabulate as requirement

## V3.4.4
- improved error reporting in utils.load_json and utils.load_yaml
- added utils.substitute_template
Expand Down
3 changes: 2 additions & 1 deletion cm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ dependencies = [
"requests",
"setuptools",
"wheel",
"giturlparse"
"giturlparse",
"tabulate"
]

keywords = [
Expand Down
1 change: 1 addition & 0 deletions cm/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ requests
setuptools
wheel
giturlparse
tabulate
Loading