Skip to content

Commit

Permalink
Merge pull request #41 from KxSystems/release254
Browse files Browse the repository at this point in the history
Release 2.5.5
  • Loading branch information
cmccarthy1 authored Dec 16, 2024
2 parents 8b9cfb6 + bc99ebb commit b7b256e
Show file tree
Hide file tree
Showing 26 changed files with 570 additions and 431 deletions.
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

0 comments on commit b7b256e

Please sign in to comment.