This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new c3f564dc docs(python): Fix README for python drivers (#904)
c3f564dc is described below

commit c3f564dc42d19a42f683e6a2df5898946bda8df6
Author: William Ayd <[email protected]>
AuthorDate: Fri Jul 14 13:44:01 2023 -0700

    docs(python): Fix README for python drivers (#904)
    
    Following current instructions yields
    
    ```sh
    ERROR: --no-deps is not a valid editable requirement. It should either be a 
path to a local project or a VCS URL (beginning with bzr+http, bzr+https, 
bzr+ssh, bzr+sftp, bzr+ftp, bzr+lp, bzr+file, git+http, git+https, git+ssh, 
git+git, git+file, hg+file, hg+http, hg+https, hg+ssh, hg+static-http, svn+ssh, 
svn+http, svn+https, svn+svn, svn+file).
    ```
---
 python/adbc_driver_flightsql/README.md  | 2 +-
 python/adbc_driver_postgresql/README.md | 2 +-
 python/adbc_driver_snowflake/README.md  | 2 +-
 python/adbc_driver_sqlite/README.md     | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/python/adbc_driver_flightsql/README.md 
b/python/adbc_driver_flightsql/README.md
index 8d606c2c..70b96332 100644
--- a/python/adbc_driver_flightsql/README.md
+++ b/python/adbc_driver_flightsql/README.md
@@ -40,7 +40,7 @@ Set the environment variable `ADBC_FLIGHTSQL_LIBRARY` to the 
path to
 pip install -e ../adbc_driver_manager
 
 export ADBC_FLIGHTSQL_LIBRARY=/path/to/libadbc_driver_flightsql.so
-pip install -e --no-deps .
+pip install --no-deps -e .
 ```
 
 See [CONTRIBUTING.md](../../CONTRIBUTING.md) for details on the
diff --git a/python/adbc_driver_postgresql/README.md 
b/python/adbc_driver_postgresql/README.md
index c48374c4..e423345b 100644
--- a/python/adbc_driver_postgresql/README.md
+++ b/python/adbc_driver_postgresql/README.md
@@ -40,7 +40,7 @@ Set the environment variable `ADBC_POSTGRESQL_LIBRARY` to the 
path to
 pip install -e ../adbc_driver_manager
 
 export ADBC_POSTGRESQL_LIBRARY=/path/to/libadbc_driver_postgresql.so
-pip install -e --no-deps .
+pip install --no-deps -e .
 ```
 
 See [CONTRIBUTING.md](../../CONTRIBUTING.md) for details on the
diff --git a/python/adbc_driver_snowflake/README.md 
b/python/adbc_driver_snowflake/README.md
index 832ca252..1f6206f7 100644
--- a/python/adbc_driver_snowflake/README.md
+++ b/python/adbc_driver_snowflake/README.md
@@ -40,7 +40,7 @@ Set the environment variable `ADBC_SNOWFLAKE_LIBRARY` to the 
path to
 pip install -e ../adbc_driver_manager
 
 export ADBC_SNOWFLAKE_LIBRARY=/path/to/libadbc_driver_snowflake.so
-pip install -e --no-deps .
+pip install --no-deps -e .
 ```
 
 See [CONTRIBUTING.md](../../CONTRIBUTING.md) for details on the
diff --git a/python/adbc_driver_sqlite/README.md 
b/python/adbc_driver_sqlite/README.md
index c4afa0d2..58b51306 100644
--- a/python/adbc_driver_sqlite/README.md
+++ b/python/adbc_driver_sqlite/README.md
@@ -40,7 +40,7 @@ Set the environment variable `ADBC_SQLITE_LIBRARY` to the 
path to
 pip install -e ../adbc_driver_manager
 
 export ADBC_SQLITE_LIBRARY=/path/to/libadbc_driver_sqlite.so
-pip install -e --no-deps .
+pip install --no-deps -e .
 ```
 
 See [CONTRIBUTING.md](../../CONTRIBUTING.md) for details on the

Reply via email to