Skip to content

Commit b7b256e

Browse files
authored
Merge pull request #41 from KxSystems/release254
Release 2.5.5
2 parents 8b9cfb6 + bc99ebb commit b7b256e

File tree

26 files changed

+570
-431
lines changed

26 files changed

+570
-431
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ KX only officially supports versions of PyKX built by KX, i.e. versions of PyKX
9393

9494
PyKX depends on the following third-party Python packages:
9595

96-
- `pandas>=1.2, < 2.2.0`
96+
- `pandas>=1.2, <2.0; python_version=='3.8'`
97+
- `pandas>=1.2, <=2.2.3; python_version>'3.8'`
9798
- `numpy~=1.22, <2.0; python_version<'3.11'`
9899
- `numpy~=1.23, <2.0; python_version=='3.11'`
99100
- `numpy~=1.26, <2.0; python_version=='3.12'`

conda-recipe/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ requirements:
3030
run:
3131
- python
3232
- numpy>=1.22,<2.0
33-
- pandas>=1.2, <2.2.0
33+
- pandas>=1.2, <=2.2.3 # [py>38]
34+
- pandas<2.0 # [py==38]
3435
- pytz>=2022.1
3536
- toml>=0.10.2
3637

docs/beta-features/streamlit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ This script can additionally be downloaded [here](examples/streamlit.py).
7575
import os
7676
os.environ['PYKX_BETA_FEATURES'] = 'true'
7777

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

docs/getting-started/installing.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,8 @@ This command should display the installed version of PyKX.
260260
- `numpy~=1.22, <2.0; python_version<'3.11', python_version>'3.7'`
261261
- `numpy~=1.23, <2.0; python_version=='3.11'`
262262
- `numpy~=1.26, <2.0; python_version=='3.12'`
263-
- `pandas>=1.2, < 2.2.0`
263+
- `pandas>=1.2, <2.0; python_version=='3.8'`
264+
- `pandas>=1.2, <=2.2.3; python_version>'3.8'`
264265
- `pytz>=2022.1`
265266
- `toml~=0.10.2`
266267

docs/getting-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To complete the quickstart guide below you will need to have completed the follo
1010

1111
## How to import PyKX
1212

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

1515
```python
1616
>>> import pykx as kx

docs/pykx-under-q/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ type | description
11351135
**Example:**
11361136

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

11401140
```q
11411141
q)p)import numpy as np
@@ -1218,7 +1218,7 @@ type | description
12181218
**Example:**
12191219

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

12231223
```q
12241224
q)p)import numpy as np

0 commit comments

Comments
 (0)