Skip to content

Commit 356ce89

Browse files
committed
Fixes UNB-2029 by changing version attr access in setup.cfg
1 parent 84c0b11 commit 356ce89

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = unboxapi
3-
version = attr: unboxapi.__version__
3+
version = attr: unboxapi.version.__version__
44
description = The official Python API library for Unbox: the Testing and Debugging Platform for AI
55
long_description = file: README.md
66
long_description_content_type = text/markdown

unboxapi/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Define the SDK version here so that both the setup.py and the interal package can have access to this value.
1+
# Define the SDK version here so that the interal package can have access to this value.
22
# See https://stackoverflow.com/questions/2058802
33
__version__ = "0.1.0"

0 commit comments

Comments
 (0)