Skip to content

Commit 405e3a0

Browse files
release: 0.5.4
1 parent 2be5f0b commit 405e3a0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
- name: Install test dependencies
149149
run: |
150150
python -m pip install --upgrade pip
151-
pip install pytest pytest-asyncio pandas>=2.0.0 polars>=0.19.0 websockets pyarrow
151+
pip install pytest pytest-asyncio pandas>=2.0.0 polars>=0.19.0 websockets pyarrow sqlglot
152152
153153
- name: Remove local rayforce package to force pip installation
154154
run: |

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Install test dependencies
4141
run: |
42-
pip install pytest pytest-cov pytest-asyncio coverage pandas>=2.0.0 polars>=0.19.0 websockets pyarrow
42+
pip install pytest pytest-cov pytest-asyncio coverage pandas>=2.0.0 polars>=0.19.0 websockets pyarrow sqlglot
4343
4444
- name: Run tests with coverage
4545
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "rayforce_py"
7-
version = "0.5.3"
7+
version = "0.5.4"
88
description = "Python bindings for RayforceDB"
99
readme = "README.md"
1010
authors = [{name = "Karim"}]

rayforce/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
FFI.init_runtime()
1212

13-
version = "0.5.3"
13+
version = "0.5.4"
1414

1515
if sys.platform == "linux":
1616
lib_name = "_rayforce_c.so"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def has_ext_modules(self):
99

1010
setup(
1111
name="rayforce_py",
12-
version="0.5.3",
12+
version="0.5.4",
1313
packages=find_packages(),
1414
package_data={
1515
"rayforce": ["*.so", "*.dylib", "*.pyi", "bin/rayforce"],

0 commit comments

Comments
 (0)