Skip to content
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

Release 2.5.5 #41

Merged
merged 1 commit into from
Dec 16, 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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ KX only officially supports versions of PyKX built by KX, i.e. versions of PyKX

PyKX depends on the following third-party Python packages:

- `pandas>=1.2, < 2.2.0`
- `pandas>=1.2, <2.0; python_version=='3.8'`
- `pandas>=1.2, <=2.2.3; python_version>'3.8'`
- `numpy~=1.22, <2.0; python_version<'3.11'`
- `numpy~=1.23, <2.0; python_version=='3.11'`
- `numpy~=1.26, <2.0; python_version=='3.12'`
Expand Down
3 changes: 2 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ requirements:
run:
- python
- numpy>=1.22,<2.0
- pandas>=1.2, <2.2.0
- pandas>=1.2, <=2.2.3 # [py>38]
- pandas<2.0 # [py==38]
- pytz>=2022.1
- toml>=0.10.2

Expand Down
2 changes: 1 addition & 1 deletion docs/beta-features/streamlit.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ This script can additionally be downloaded [here](examples/streamlit.py).
import os
os.environ['PYKX_BETA_FEATURES'] = 'true'

# This is optional but suggested as without it's usage caching
# This is optional but suggested as without its usage caching
# is not supported within streamlit
os.environ['PYKX_THREADING'] = 'true'

Expand Down
3 changes: 2 additions & 1 deletion docs/getting-started/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ This command should display the installed version of PyKX.
- `numpy~=1.22, <2.0; python_version<'3.11', python_version>'3.7'`
- `numpy~=1.23, <2.0; python_version=='3.11'`
- `numpy~=1.26, <2.0; python_version=='3.12'`
- `pandas>=1.2, < 2.2.0`
- `pandas>=1.2, <2.0; python_version=='3.8'`
- `pandas>=1.2, <=2.2.3; python_version>'3.8'`
- `pytz>=2022.1`
- `toml~=0.10.2`

Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To complete the quickstart guide below you will need to have completed the follo

## How to import PyKX

To access PyKX and it's functionality import it within your Python code using the following syntax
To access PyKX and its functionality import it within your Python code using the following syntax

```python
>>> import pykx as kx
Expand Down
4 changes: 2 additions & 2 deletions docs/pykx-under-q/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ type | description
**Example:**

The following example shows the usage of `pyarglist` with a Python function and
various configurations of it's use
various configurations of its use

```q
q)p)import numpy as np
Expand Down Expand Up @@ -1218,7 +1218,7 @@ type | description
**Example:**

The following example shows the usage of `pykwargs` with a Python function and
various configurations of it's use
various configurations of its use

```q
q)p)import numpy as np
Expand Down
Loading
Loading