Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.

Commit 1960d6b

Browse files
committed
Merge branch 'master' of github.com:Paperspace/paperspace-python into PS-9079-add-experiment-create-commands
2 parents dd09bfe + 307abb3 commit 1960d6b

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Paperspace Python
22
=================
33

4-
Release 0.0.17
4+
Release 0.0.18
55

66
See [releasenotes.md](https://github.com/Paperspace/paperspace-python/blob/master/releasenotes.md) for details on the current release, as well as release history.
77

paperspace/jobs.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
import base64
22
import inspect
3+
import os
34
import re
5+
import sys
6+
import tempfile
47
import time
58

69
import boto3
710
import botocore
11+
import requests
812
import six
913

14+
from paperspace.config import config
1015
from .login import apikey
11-
from .method import *
16+
from .method import method, requests_exception_to_error_obj, print_json_pretty
1217

1318

1419
def list(params={}):

paperspace/method.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import requests
88

99
from paperspace.version import version
10+
from .version import version
1011
from .config import *
1112

1213

paperspace/version.py

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

releasenotes.md

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

3+
## Release Notes for v0.0.18
4+
### Fixes
5+
* Fix missing import
6+
37
## Release Notes for v0.0.16
48

59
### New features

0 commit comments

Comments
 (0)