Skip to content

Commit e16cbb4

Browse files
authored
Merge pull request #47 from Paperspace/0.2.3
0.2.3
2 parents e368960 + f16de59 commit e16cbb4

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Gradient CLI
44
=================
55

6-
Release 0.2.2
6+
Release 0.2.3
77

88
See [releasenotes.md](https://github.com/Paperspace/gradient-cli/blob/master/releasenotes.md) for details on the current release, as well as release history.
99

@@ -78,7 +78,7 @@ You can run a Python script on a Paperspace server from the command line as foll
7878

7979
You can also provide additional jobs options on the command line:
8080

81-
gradient run myscript.py --name my_new_job --project myproject --machineType P5000 \
81+
gradient run myscript.py --name my_new_job --projectId myproject --machineType P5000 \
8282
--container paperspace/tensorflow-python`
8383

8484
Note: this functionality is deprecated and will not be available in future releases
@@ -114,11 +114,11 @@ Basic Run Scenarios
114114

115115
4. Run an executable or shell command remotely using the `--command` option:
116116

117-
`gradient run --command "<executable or shell command>"`
117+
`gradient run <path_to_script.py> --command "<executable or shell command>"`
118118

119119
Example:
120120

121-
`gradient run --command "ls -al"`
121+
`gradient run <path_to_script.py> --command "ls -al"`
122122

123123
Run Options
124124
===========
@@ -150,7 +150,7 @@ The `--ignoreFiles "<file-or-dir>,..."` option can be used specify a simple comm
150150

151151
The following files and directories are ignored by default: `.git`, `.gitignore`, `__pycache__`.
152152

153-
Other `jobs create` options can be specified, such as `--machineType <machine-type>`, `--container <container-image-reference>`, and `--project <project-name>`.
153+
Other `jobs create` options can be specified, such as `--machineType <machine-type>`, `--container <container-image-reference>`, and `--projectId <project-name>`.
154154

155155
See the Paperspae API [jobs create](https://paperspace.github.io/paperspace-node/jobs.html#.create) documentation for a complete description of these options.
156156

gradient/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.2.2"
1+
version = "0.2.3"

releasenotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Gradient by Paperspace Release Notes
22

3+
# Release Notes for 0.2.3
4+
### Fixes
5+
* hardcoded `colorama` version to avoid errors during installation
6+
37
# Release Notes for 0.2.2
48
##### Note: this list includes all changes made in alpha releases since 0.2.1
59
### New features

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run(self):
6868
'click-didyoumean',
6969
'click-help-colors',
7070
'click-completion',
71-
'colorama',
71+
'colorama==0.3.9',
7272
'requests-toolbelt',
7373
'progressbar2',
7474
'halo',

0 commit comments

Comments
 (0)