Skip to content

Typing Support (ingress.pyi file) #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions ci/pip_install_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,7 @@ def main(args):
else:
install_new_pandas_and_numpy()

if (sys.platform == 'darwin') and (platform.processor() == 'i386'):
# Workaround for https://github.com/apache/arrow/issues/41696
# Remove if/once resolved.
# We only seem to get this issue on intel mac.
try_pip_install('pyarrow==16.0.0')
else:
try_pip_install('pyarrow')
try_pip_install('pyarrow')

on_linux_is_glibc = (
(not platform.system() == 'Linux') or
Expand All @@ -99,7 +93,8 @@ def main(args):
import pandas
import numpy
import pyarrow
if (sys.version_info >= (3, 8)):
if (sys.version_info >= (3, 8) and sys.version_info < (3, 13)):
# As of this commit, fastparquet does not have a binary built for 3.13
import fastparquet


Expand Down
1 change: 0 additions & 1 deletion examples/auth.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from questdb.ingress import Sender, IngressError, TimestampNanos
import sys
import datetime


def example(host: str = 'localhost', port: int = 9009):
Expand Down
1 change: 0 additions & 1 deletion examples/auth_and_tls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from questdb.ingress import Sender, IngressError, TimestampNanos
import sys
import datetime


def example(host: str = 'localhost', port: int = 9009):
Expand Down
1 change: 0 additions & 1 deletion examples/basic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from questdb.ingress import Sender, IngressError, TimestampNanos
import sys
import datetime


def example(host: str = 'localhost', port: int = 9009):
Expand Down
1 change: 0 additions & 1 deletion examples/from_conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from questdb.ingress import Sender, IngressError, TimestampNanos
import sys
import datetime


def example():
Expand Down
1 change: 0 additions & 1 deletion examples/http.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from questdb.ingress import Sender, IngressError, TimestampNanos
import sys
import datetime


def example(host: str = 'localhost', port: int = 9009):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ requires = [

[tool.cibuildwheel]
# See: https://cibuildwheel.readthedocs.io/en/stable/options/#configuration-file
build-verbosity = "3"
build-verbosity = 3
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

before-build = "python {project}/install_rust.py"
before-test = "python {project}/ci/pip_install_deps.py"
test-command = "python {project}/test/test.py -v"
Expand Down
Loading