Skip to content

Commit ce38210

Browse files
authoredSep 3, 2024
Adds community to readme (#91)
1 parent d0bc7a3 commit ce38210

File tree

5 files changed

+23
-26
lines changed

5 files changed

+23
-26
lines changed
 

‎README.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,10 @@ Links
9090
Community
9191
=========
9292

93-
If you need help, you can ask on `Stack Overflow
94-
<https://stackoverflow.com/questions/ask?tags=questdb&tags=py-questdb-client>`_:
95-
We monitor the ``#questdb`` and ``#py-questdb-client`` tags.
93+
Stop by our `Community Forum <https://community.questdb.io>`_ to
94+
chat with the QuestDB team.
9695

97-
Alternatively, you may find us on `Slack <https://slack.questdb.io>`_.
98-
99-
You can also `sign up to our mailing list <https://questdb.io/community/>`_
96+
You can also `sign up to our mailing list <https://questdb.io/contributors/>`_
10097
to get notified of new releases.
10198

10299

‎ci/cibuildwheel.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ stages:
5757
- Agent.Name -equals arm64-clients-$(Build.BuildId)
5858
dependsOn:
5959
- start_linux_arm64_agent_aws
60-
timeoutInMinutes: 60
60+
timeoutInMinutes: 90
6161
condition: eq(variables['System.PullRequest.IsFork'], 'false')
6262
steps:
6363
- checkout: self
@@ -77,7 +77,7 @@ stages:
7777

7878
- job: linux_x64_cpython_manylinux_x86_64
7979
pool: {vmImage: 'ubuntu-latest'}
80-
timeoutInMinutes: 60
80+
timeoutInMinutes: 90
8181
steps:
8282
- task: UsePythonVersion@0
8383
- bash: |
@@ -94,7 +94,7 @@ stages:
9494

9595
- job: linux_x64_cpython_manylinux_i686
9696
pool: {vmImage: 'ubuntu-latest'}
97-
timeoutInMinutes: 60
97+
timeoutInMinutes: 90
9898
steps:
9999
- task: UsePythonVersion@0
100100
- bash: |
@@ -111,7 +111,7 @@ stages:
111111

112112
- job: linux_x64_cpython_musllinux
113113
pool: {vmImage: 'ubuntu-latest'}
114-
timeoutInMinutes: 60
114+
timeoutInMinutes: 90
115115
steps:
116116
- task: UsePythonVersion@0
117117
- bash: |
@@ -128,7 +128,7 @@ stages:
128128

129129
- job: linux_x64_pypy
130130
pool: {vmImage: 'ubuntu-latest'}
131-
timeoutInMinutes: 60
131+
timeoutInMinutes: 90
132132
steps:
133133
- task: UsePythonVersion@0
134134
- bash: |
@@ -144,8 +144,8 @@ stages:
144144
inputs: {pathtoPublish: 'wheelhouse'}
145145

146146
- job: macos_x64
147-
pool: {vmImage: 'macOS-11'}
148-
timeoutInMinutes: 60
147+
pool: {vmImage: 'macOS-12'}
148+
timeoutInMinutes: 90
149149
steps:
150150
- task: UsePythonVersion@0
151151
- bash: |
@@ -160,7 +160,7 @@ stages:
160160

161161
- job: windows_i686
162162
pool: {vmImage: 'windows-2019'}
163-
timeoutInMinutes: 60
163+
timeoutInMinutes: 90
164164
steps:
165165
- task: UsePythonVersion@0
166166
- bash: |
@@ -177,7 +177,7 @@ stages:
177177

178178
- job: windows_x86_64
179179
pool: {vmImage: 'windows-2019'}
180-
timeoutInMinutes: 60
180+
timeoutInMinutes: 90
181181
steps:
182182
- task: UsePythonVersion@0
183183
- bash: |

‎ci/pip_install_deps.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,13 @@ def main(args):
9393
(platform.libc_ver()[0] == 'glibc'))
9494
is_64bits = sys.maxsize > 2 ** 32
9595
is_cpython = platform.python_implementation() == 'CPython'
96-
is_windows_py3_12 = (
97-
# https://github.com/dask/fastparquet/issues/892
98-
platform.system() == 'Windows' and
99-
sys.version_info >= (3, 12))
100-
if on_linux_is_glibc and is_64bits and is_cpython:
96+
is_final = sys.version_info.releaselevel == 'final'
97+
if on_linux_is_glibc and is_64bits and is_cpython and is_final:
10198
# Ensure that we've managed to install the expected dependencies.
10299
import pandas
103100
import numpy
104101
import pyarrow
105-
if (sys.version_info >= (3, 8)) and (not is_windows_py3_12):
102+
if (sys.version_info >= (3, 8)):
106103
import fastparquet
107104

108105

‎docs/troubleshooting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ Due to this commit lag, the line that caused the error may not be the last line.
112112
Asking for help
113113
===============
114114

115-
The best way to get help is through `Slack <https://slack.questdb.io>`_.
115+
The best way to get help is through our `Community Forum <https://community.questdb.io>`_.

‎pyproject.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ classifiers = [
1717
"Topic :: Software Development :: Libraries",
1818
"Topic :: System :: Networking",
1919
"Topic :: Database :: Front-Ends",
20-
"Topic :: Scientific/Engineering"]
20+
"Topic :: Scientific/Engineering",
21+
]
2122

2223
[project.license]
2324
text = "Apache License 2.0"
@@ -37,15 +38,16 @@ Changelog = "https://py-questdb-client.readthedocs.io/en/latest/changelog.html"
3738
Documentation = "https://py-questdb-client.readthedocs.io/en/latest/index.html"
3839
Source = "https://github.com/questdb/py-questdb-client/"
3940
Tracker = "https://github.com/questdb/py-questdb-client/issues"
40-
Slack = "http://slack.questdb.io"
41+
Community = "http://community.questdb.io"
4142

4243

4344
[build-system]
4445
requires = [
4546
# Setuptools 18.0 and above properly handles Cython extensions.
4647
"setuptools>=45.2.0",
4748
"wheel>=0.34.2",
48-
"cython>=0.29.24"]
49+
"cython>=0.29.24",
50+
]
4951

5052

5153
[tool.cibuildwheel]
@@ -57,7 +59,8 @@ test-command = "python {project}/test/test.py -v"
5759
skip = [
5860
# No 32-bit musl C native tool chain for Rust.
5961
# There's a tier 2 target for it, but it would need cross-compiling.
60-
"*-musllinux_i686"]
62+
"*-musllinux_i686",
63+
]
6164

6265
# [tool.cibuildwheel.windows]
6366
# # This doens't work yet. Windows/ARM64 support is experimental.

0 commit comments

Comments
 (0)