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

Removed Python 3.8 and added summary to query init #612

Merged
merged 1 commit into from
Dec 13, 2023
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ If applicable, add screenshots to help explain your problem.
**Installation Setup (please complete the following information):**

- OS: [e.g. iOS]
- Python Version: [e.g. 3.11, 3.8]
- Python Version: [e.g. 3.11, 3.9]
- SDK Version: [e.g. 1.0]

**Additional context**
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,13 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
pyspark: ["3.3.0", "3.3.1", "3.3.2", "3.4.0", "3.4.1"]
exclude:
- pyspark: "3.4.1"
python-version: "3.8"
- pyspark: "3.4.1"
python-version: "3.9"
- pyspark: "3.4.1"
python-version: "3.10"
- pyspark: "3.4.0"
python-version: "3.8"
python-version: "3.10"
- pyspark: "3.4.0"
python-version: "3.9"
- pyspark: "3.4.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This article provides a guide on how to install the RTDIP SDK. Get started by en

There are a few things to note before using the RTDIP SDK. The following prerequisites will need to be installed on your local machine.

Python version 3.8 >= and < 3.12 should be installed. Check which python version you have with the following command:
Python version 3.9 >= and < 3.12 should be installed. Check which python version you have with the following command:

python --version

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python>=3.8,<3.12
- python>=3.9,<3.12
- mkdocs-material-extensions==1.1.1
- jinja2==3.1.2
- pytest==7.4.0
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -94,7 +93,7 @@
package_dir={"": "src/sdk/python"},
include_package_data=True,
packages=find_packages(where="src/sdk/python"),
python_requires=">=3.8, <3.12",
python_requires=">=3.9, <3.12",
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_DEPENDENCIES,
setup_requires=["pytest-runner", "setuptools_scm"],
Expand Down
1 change: 1 addition & 0 deletions src/sdk/python/rtdip_sdk/queries/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
time_weighted_average,
circular_standard_deviation,
circular_average,
summary,
)
from .time_series.time_series_query_builder import *
Loading