You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-18
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,10 @@
6
6
An intuitive, easy-to-use python interface for batch resource requesting, access, job submission, and observation. Simplifying the developer's life while enabling access to high-performance compute resources, either in the cloud or on-prem.
7
7
8
8
For guided demos and basics walkthroughs, check out the following links:
9
-
- Guided demo notebooks available [here](https://github.com/project-codeflare/codeflare-sdk/tree/main/demo-notebooks/guided-demos), and copies of the notebooks with [expected output](https://github.com/project-codeflare/codeflare-sdk/tree/main/demo-notebooks/guided-demos/notebook-ex-outputs) also available
10
-
- Note that these notebooks will work with the latest `codeflare-sdk` PyPI release. For testing and experimentation with `main` branch, please use the [preview notebooks](https://github.com/project-codeflare/codeflare-sdk/tree/main/demo-notebooks/guided-demos/preview_nbs)
11
-
- Additionally, we have a [video walkthrough](https://www.youtube.com/watch?v=U76iIfd9EmE) of these basic demos from June, 2023
9
+
10
+
- Guided demo notebooks available [here](https://github.com/project-codeflare/codeflare-sdk/tree/main/demo-notebooks/guided-demos), and copies of the notebooks with [expected output](https://github.com/project-codeflare/codeflare-sdk/tree/main/demo-notebooks/guided-demos/notebook-ex-outputs) also available
11
+
- Note that these notebooks will work with the latest `codeflare-sdk` PyPI release. For testing and experimentation with `main` branch, please use the [preview notebooks](https://github.com/project-codeflare/codeflare-sdk/tree/main/demo-notebooks/guided-demos/preview_nbs)
12
+
- Additionally, we have a [video walkthrough](https://www.youtube.com/watch?v=U76iIfd9EmE) of these basic demos from June, 2023
12
13
13
14
Full documentation can be found [here](https://project-codeflare.github.io/codeflare-sdk/)
14
15
@@ -54,7 +55,6 @@ To build the python package: `$ poetry build`
54
55
55
56
## Release Instructions
56
57
57
-
58
58
### Automated Releases
59
59
60
60
It is possible to use the Release Github workflow to do the release. This is generally the process we follow for releases
@@ -63,19 +63,18 @@ It is possible to use the Release Github workflow to do the release. This is gen
63
63
64
64
The following instructions apply when doing release manually. This may be required in instances where the automation is failing.
65
65
66
-
* Check and update the version in "pyproject.toml" file.
67
-
* Generate new documentation.
66
+
- Check and update the version in "pyproject.toml" file.
67
+
- Generate new documentation.
68
68
`pdoc --html -o docs src/codeflare_sdk && pushd docs && rm -rf cluster job utils && mv codeflare_sdk/* . && rm -rf codeflare_sdk && popd && find docs -type f -name "*.html" -exec bash -c "echo '' >> {}" \;` (it is possible to install **pdoc** using the following command `poetry install --with docs`)
0 commit comments