Skip to content

Commit

Permalink
feat: update Python version support to include 3.10 and 3.11 in workf…
Browse files Browse the repository at this point in the history
…lows and dependencies
  • Loading branch information
jjjermiah committed Dec 11, 2024
1 parent f7bbf46 commit f3fa34b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14] # , windows-latest removed for now
env: ["py313", "py312"]
env: [py310, py311, py312, py313]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 7 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ dev = { features = ["dev", "test", "quality", "docs", "release", "build"], solve
quality = { features = ["quality"], solve-group = "default" }
docs = { features = ["docs"], solve-group = "default" }
publish = { features = ["build", "release"], solve-group = "default" }
py310 = { features = ["test", "py310"] }
py311 = { features = ["test", "py311"] }
py312 = { features = ["test", "py312"] }
py313 = { features = ["test", "py313"] }

Expand All @@ -20,9 +22,13 @@ py313 = { features = ["test", "py313"] }
orcestra-downloader = { path = ".", editable = true }

[dependencies]
python = ">=3.12"
python = ">=3.10"

####################################### PYTHON VERSIONS ###########################################
[feature.py310.dependencies]
python = "3.10.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[feature.py313.dependencies]
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ maintainers = [{ name = "Jermiah Joseph", email = "[email protected]" }]
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]

requires-python = ">= 3.12"
requires-python = ">= 3.10"
dependencies = [
"rich",
"aiohttp>=3.11.4",
Expand Down

0 comments on commit f3fa34b

Please sign in to comment.