Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Commit e114f71

Browse files
committed
release: 1.0.0
1 parent 81420c1 commit e114f71

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ test_email: # Test Send Email
88
python -m unittest tests.TestSendEmail
99

1010
build: # Build distribution for SDK
11-
python setup.py sdist bdist_wheel
11+
python3 setup.py sdist bdist_wheel
1212

1313
publish: # Publish the package to PyPI
14-
python -m twine upload dist/*
14+
python3 -m twine upload dist/*
1515

1616
clean: # Remove distribution packages
1717
rm -rf dist build deta.egg.egg-info

deta/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
except Exception:
1515
pass
1616

17-
__version__ = 0.9
17+
__version__ = "1.0.0"
1818

1919

2020
def _get_project_key_id(project_key: str = None, project_id: str = None):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="deta",
5-
version="0.9",
5+
version="1.0.0",
66
description="Python SDK for Deta Base & Deta Drive.",
77
url="http://github.com/deta/deta-python",
88
author="Deta",

0 commit comments

Comments
 (0)