Skip to content
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
16 changes: 8 additions & 8 deletions .github/workflows/python_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,17 @@ jobs:
run: |
pytest -m "not integration"

- name: Pytest Integration Tests
env:
SIFT_GRPC_URI: ${{ vars.SIFT_GRPC_URI }}
SIFT_REST_URI: ${{ vars.SIFT_REST_URI }}
SIFT_API_KEY: ${{ secrets.SIFT_API_KEY }}
run: |
pytest -m "integration"
#- name: Pytest Integration Tests
#env:
#SIFT_GRPC_URI: ${{ vars.SIFT_GRPC_URI }}
#SIFT_REST_URI: ${{ vars.SIFT_REST_URI }}
#SIFT_API_KEY: ${{ secrets.SIFT_API_KEY }}
#run: |
#pytest -m "integration"

- name: Sync Stubs Mypy
working-directory: python/lib
run: |
stubtest \
--mypy-config-file ../pyproject.toml \
sift_client.resources.sync_stubs
sift_client.resources.sync_stubs
14 changes: 7 additions & 7 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sift_stack_py"
version = "1.0.0a8"
version = "1.0.0a9"
description = "Python client library for the Sift API"
requires-python = ">=3.8"
readme = { file = "README.md", content-type = "text/markdown" }
Expand Down Expand Up @@ -59,7 +59,7 @@ all = [
'pyOpenSSL<24.0.0',
'pyarrow>=17.0.0',
'rosbags~=0.0',
'sift-stream-bindings>=0.2.0-rc4',
'sift-stream-bindings>=0.2.0-rc8',
'types-pyOpenSSL<24.0.0',
]
build = [
Expand Down Expand Up @@ -100,7 +100,7 @@ dev-all = [
'pytest==8.2.2',
'rosbags~=0.0',
'ruff~=0.12.10',
'sift-stream-bindings>=0.2.0-rc4',
'sift-stream-bindings>=0.2.0-rc8',
'tomlkit~=0.13.3',
'types-pyOpenSSL<24.0.0',
]
Expand Down Expand Up @@ -153,7 +153,7 @@ docs-build = [
'pytest==8.2.2',
'rosbags~=0.0',
'ruff~=0.12.10',
'sift-stream-bindings>=0.2.0-rc4',
'sift-stream-bindings>=0.2.0-rc8',
'tomlkit~=0.13.3',
'types-pyOpenSSL<24.0.0',
]
Expand All @@ -176,10 +176,10 @@ rosbags = [
'rosbags~=0.0',
]
sift-stream = [
'sift-stream-bindings>=0.2.0-rc4',
'sift-stream-bindings>=0.2.0-rc8',
]
sift-stream-bindings = [
'sift-stream-bindings>=0.2.0-rc4',
'sift-stream-bindings>=0.2.0-rc8',
]
tdms = [
'npTDMS~=1.9',
Expand Down Expand Up @@ -215,7 +215,7 @@ docs = ["mkdocs",
openssl = ["pyOpenSSL<24.0.0", "types-pyOpenSSL<24.0.0", "cffi~=1.14"]
tdms = ["npTDMS~=1.9"]
rosbags = ["rosbags~=0.0"]
sift-stream = ["sift-stream-bindings>=0.2.0-rc4"]
sift-stream = ["sift-stream-bindings>=0.2.0-rc8"]
hdf5 = ["h5py~=3.11", "polars~=1.8"]
data-review = ["pyarrow>=17.0.0"]

Expand Down
Loading