From 4331333e6f0cbb3183cac129549da560adba0a80 Mon Sep 17 00:00:00 2001 From: Teo Date: Thu, 21 Nov 2024 16:30:07 -0600 Subject: [PATCH 1/3] chore: `requires-python >= 3.9` --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 51da621f..75bbe599 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ authors = [ ] description = "Observability and DevTool Platform for AI Agents" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", From 3e28f49f92392abe7e944cc4869583f52925b9c2 Mon Sep 17 00:00:00 2001 From: Teo Date: Thu, 21 Nov 2024 16:32:59 -0600 Subject: [PATCH 2/3] docs: update Python version range in CONTRIBUTING.md (>=3.9) --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1db574e5..9acb6cfc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -114,7 +114,7 @@ We use the following testing packages: We use tox to automate and standardize testing. Tox: - Creates isolated virtual environments for testing -- Tests against multiple Python versions (3.7-3.12) +- Tests against multiple Python versions (3.9-3.12) - Runs all test suites consistently - Ensures dependencies are correctly specified - Verifies the package installs correctly @@ -397,4 +397,4 @@ We encourage active community participation and are here to help! ## License -By contributing to AgentOps, you agree that your contributions will be licensed under the MIT License. \ No newline at end of file +By contributing to AgentOps, you agree that your contributions will be licensed under the MIT License. From 2e126e3fdf3b8336cb99448ef2dbcee970f54be8 Mon Sep 17 00:00:00 2001 From: Teo Date: Thu, 21 Nov 2024 16:34:13 -0600 Subject: [PATCH 3/3] ci: py >= 3.9 --- .github/workflows/python-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-testing.yml b/.github/workflows/python-testing.yml index 8fd5e90b..7495fdf6 100644 --- a/.github/workflows/python-testing.yml +++ b/.github/workflows/python-testing.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: - python-version: [3.7,3.8,3.9,3.10,3.11,3.12] + python-version: [3.9,3.10,3.11,3.12] steps: - uses: actions/checkout@v2 @@ -36,4 +36,4 @@ jobs: - name: Install tox run: pip install tox - name: Run tests with tox - run: tox \ No newline at end of file + run: tox