Skip to content

Commit e58aad2

Browse files
committed
Bump Project Version
1 parent 121ad8f commit e58aad2

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

build/lib/scaleapi/projects.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Project(object):
2+
def __init__(self, param_dict, client):
3+
self.param_dict = param_dict
4+
self.name = param_dict['name']
5+
self.client = client
6+
7+
def __hash__(self):
8+
return hash(self.name)
9+
10+
def __str__(self):
11+
return 'Project(name=%s)' % self.name
12+
13+
def __repr__(self):
14+
return 'Project(%s)' % self.param_dict

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
setup(
2929
name='scaleapi',
3030
packages=['scaleapi'],
31-
version='0.4.0',
31+
version='1.0.0',
3232
description='The official Python client library for Scale AI, the Data Platform for AI',
3333
author='Scale AI',
3434
author_email='support@scale.com',

0 commit comments

Comments
 (0)