diff --git a/README.md b/README.md index 1a2decfd..9333db4e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Gradient CLI ================= -Release 0.2.2 +Release 0.2.3 See [releasenotes.md](https://github.com/Paperspace/gradient-cli/blob/master/releasenotes.md) for details on the current release, as well as release history. @@ -78,7 +78,7 @@ You can run a Python script on a Paperspace server from the command line as foll You can also provide additional jobs options on the command line: - gradient run myscript.py --name my_new_job --project myproject --machineType P5000 \ + gradient run myscript.py --name my_new_job --projectId myproject --machineType P5000 \ --container paperspace/tensorflow-python` Note: this functionality is deprecated and will not be available in future releases @@ -114,11 +114,11 @@ Basic Run Scenarios 4. Run an executable or shell command remotely using the `--command` option: - `gradient run --command ""` + `gradient run --command ""` Example: - `gradient run --command "ls -al"` + `gradient run --command "ls -al"` Run Options =========== @@ -150,7 +150,7 @@ The `--ignoreFiles ",..."` option can be used specify a simple comm The following files and directories are ignored by default: `.git`, `.gitignore`, `__pycache__`. -Other `jobs create` options can be specified, such as `--machineType `, `--container `, and `--project `. +Other `jobs create` options can be specified, such as `--machineType `, `--container `, and `--projectId `. See the Paperspae API [jobs create](https://paperspace.github.io/paperspace-node/jobs.html#.create) documentation for a complete description of these options. diff --git a/gradient/version.py b/gradient/version.py index cdaed6e7..418a9893 100644 --- a/gradient/version.py +++ b/gradient/version.py @@ -1 +1 @@ -version = "0.2.2" +version = "0.2.3" diff --git a/releasenotes.md b/releasenotes.md index 073afad9..2c2e1f43 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,5 +1,9 @@ # Gradient by Paperspace Release Notes +# Release Notes for 0.2.3 +### Fixes +* hardcoded `colorama` version to avoid errors during installation + # Release Notes for 0.2.2 ##### Note: this list includes all changes made in alpha releases since 0.2.1 ### New features diff --git a/setup.py b/setup.py index fe3bdc54..07d7e0b8 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def run(self): 'click-didyoumean', 'click-help-colors', 'click-completion', - 'colorama', + 'colorama==0.3.9', 'requests-toolbelt', 'progressbar2', 'halo',