-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: release 1.3.0 * Fix action * Trying to fix.
- Loading branch information
1 parent
72d770d
commit 4a7613e
Showing
10 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,14 @@ And a command-line utility: | |
$ shillelagh | ||
sql> SELECT * FROM a_table | ||
There is also an `experimental backend <https://shillelagh.readthedocs.io/en/latest/postgres.html>`_ that uses Postgres with the `Multicorn2 <http://multicorn2.org/>`_ extension: | ||
There is also an `experimental backend <https://shillelagh.readthedocs.io/en/latest/postgres.html>`_ that uses Postgres with the `Multicorn2 <http://multicorn2.org/>`_ extension. First, install the additional dependencies: | ||
|
||
.. code-block:: bash | ||
$ pip install 'shillelagh[multicorn]' | ||
$ pip install 'multicorn @ git+https://github.com/pgsql-io/[email protected]' | ||
Then run: | ||
|
||
.. code-block:: python | ||
|
@@ -66,6 +73,8 @@ There is also an `experimental backend <https://shillelagh.readthedocs.io/en/lat | |
database="examples", | ||
) | ||
Or: | ||
|
||
.. code-block:: python | ||
from sqlalchemy import create_engine | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,8 @@ RUN wget https://github.com/pgsql-io/multicorn2/archive/refs/tags/v2.5.tar.gz && | |
# Create a virtual environment and install dependencies | ||
RUN python3 -m venv /code/venv && \ | ||
/code/venv/bin/pip install --upgrade pip && \ | ||
/code/venv/bin/pip install -e '.[all]' | ||
/code/venv/bin/pip install -e '.[all]' && \ | ||
/code/venv/bin/pip install 'multicorn @ git+https://github.com/pgsql-io/[email protected]' | ||
|
||
# Set environment variable for PostgreSQL to use the virtual environment | ||
ENV PATH="/code/venv/bin:$PATH" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
-e file:.[testing] | ||
multicorn @ git+https://github.com/pgsql-io/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ testing = | |
google-auth>=1.23.0 | ||
holidays>=0.23 | ||
html5lib>=1.1 | ||
multicorn @ git+https://github.com/pgsql-io/[email protected] | ||
# multicorn @ git+https://github.com/pgsql-io/[email protected] | ||
pandas>=1.2.2 | ||
pip-tools>=6.4.0 | ||
pre-commit>=2.13.0 | ||
|
@@ -113,7 +113,7 @@ all = | |
google-auth>=1.23.0 | ||
holidays>=0.23 | ||
html5lib>=1.1 | ||
multicorn @ git+https://github.com/pgsql-io/[email protected] | ||
# multicorn @ git+https://github.com/pgsql-io/[email protected] | ||
pandas>=1.2.2 | ||
prison>=0.2.1 | ||
prompt_toolkit>=3 | ||
|
@@ -158,7 +158,7 @@ htmltableapi = | |
html5lib>=1.1 | ||
pandas>=1.2.2 | ||
multicorn = | ||
multicorn @ git+https://github.com/pgsql-io/[email protected] | ||
# multicorn @ git+https://github.com/pgsql-io/[email protected] | ||
psycopg2-binary>=2.9.9 | ||
pandasmemory = | ||
pandas>=1.2.2 | ||
|