Skip to content

Commit 98d3dc0

Browse files
committed
Bump version to 2.3.0
- move VERSION to `iconsdk/version.py`
1 parent 1fe25b5 commit 98d3dc0

File tree

4 files changed

+3
-24
lines changed

4 files changed

+3
-24
lines changed

VERSION

-1
This file was deleted.

build.sh

-18
This file was deleted.

iconsdk/version.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "2.3.0"

setup.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import os
21
from setuptools import setup, find_packages
3-
4-
with open(os.path.join('.', 'VERSION')) as version_file:
5-
version = version_file.read().strip()
2+
from iconsdk.version import __version__
63

74
with open("README.md", 'r') as f:
85
long_description = f.read()
@@ -16,7 +13,7 @@
1613

1714
setup(
1815
name='iconsdk',
19-
version=version,
16+
version=__version__,
2017
description='ICON SDK for Python is a collection of libraries which allow you to interact '
2118
'with a local or remote ICON node using an HTTP connection.',
2219
long_description=long_description,

0 commit comments

Comments
 (0)