diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dc003cb64..3727961c9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -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** diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b77fba5e1..2b17f5683 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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" diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index d7af5e10b..20fb19556 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -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 diff --git a/environment.yml b/environment.yml index ee5c30a9e..21bc5062f 100644 --- a/environment.yml +++ b/environment.yml @@ -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 diff --git a/setup.py b/setup.py index 415c0cf50..0bd1658e1 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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"], diff --git a/src/sdk/python/rtdip_sdk/queries/__init__.py b/src/sdk/python/rtdip_sdk/queries/__init__.py index 3d7db4fb4..f98374a2c 100644 --- a/src/sdk/python/rtdip_sdk/queries/__init__.py +++ b/src/sdk/python/rtdip_sdk/queries/__init__.py @@ -21,5 +21,6 @@ time_weighted_average, circular_standard_deviation, circular_average, + summary, ) from .time_series.time_series_query_builder import *