Add python 3.10

This commit is contained in:
ishaansehgal99
2025-07-27 02:06:06 -07:00
parent 5c654b391a
commit a19872ac77
3 changed files with 4 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ['3.11', '3.12'] python-version: ['3.10', '3.11', '3.12']
services: services:
postgres: postgres:

View File

@@ -72,7 +72,7 @@ Billing is only enforced when explicitly configured with Stripe keys.
### Prerequisites ### Prerequisites
- Python 3.12 - Python 3.10+
- PostgreSQL - PostgreSQL
- Make (for development commands) - Make (for development commands)

View File

@@ -7,7 +7,7 @@ name = "omnara"
version = "1.3.11" version = "1.3.11"
description = "Omnara Agent Dashboard - MCP Server and Python SDK" description = "Omnara Agent Dashboard - MCP Server and Python SDK"
readme = "README.md" readme = "README.md"
requires-python = ">=3.11" requires-python = ">=3.10"
license = {file = "LICENSE"} license = {file = "LICENSE"}
authors = [ authors = [
{name = "Omnara", email = "ishaan@omnara.com"} {name = "Omnara", email = "ishaan@omnara.com"}
@@ -17,6 +17,7 @@ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
] ]