This is an automated email from the ASF dual-hosted git repository.
jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git
The following commit(s) were added to refs/heads/master by this push:
new 467e207a Update readme and version for python driver (#780)
467e207a is described below
commit 467e207a58f12f2cfbe284e7b98225d7c3064bd1
Author: Muhammad Taha Naveed <[email protected]>
AuthorDate: Thu Mar 30 20:53:20 2023 +0500
Update readme and version for python driver (#780)
- Removed external links from readme.
- Updated version to 1.0.0
---
drivers/python/README.md | 7 -------
drivers/python/age/VERSION.py | 4 ++--
2 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/drivers/python/README.md b/drivers/python/README.md
index e82e770f..a38a4cde 100644
--- a/drivers/python/README.md
+++ b/drivers/python/README.md
@@ -31,17 +31,10 @@ python -m unittest -v test_agtypes.py
python setup.py install
```
-### Install from PyPi
-
-```
-pip install apache-age-python
-```
-
### For more information about [Apache AGE](https://age.apache.org/)
* Apache Age : https://age.apache.org/
* Github : https://github.com/apache/age
* Document : https://age.apache.org/age-manual/master/index.html
-* apache-age-python GitHub : https://github.com/rhizome-ai/apache-age-python
### Check AGE loaded on your PostgreSQL
Connect to your containerized Postgres instance and then run the following
commands:
diff --git a/drivers/python/age/VERSION.py b/drivers/python/age/VERSION.py
index 8a631b40..3b014ea5 100644
--- a/drivers/python/age/VERSION.py
+++ b/drivers/python/age/VERSION.py
@@ -15,8 +15,8 @@
-VER_MAJOR = 0
+VER_MAJOR = 1
VER_MINOR = 0
-VER_MICRO = 3
+VER_MICRO = 0
VERSION = '.'.join([str(VER_MAJOR),str(VER_MINOR),str(VER_MICRO)])