Skip to content

Commit

Permalink
📦️ package(py13): by Spec 0 drop py3.10 and add py13 (#111)
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <[email protected]>
  • Loading branch information
nstarman authored Dec 11, 2024
1 parent 30e802f commit 60e9dbc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 183 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
python-version: ["3.11", "3.12", "3.13"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]

include:
- python-version: pypy-3.10
runs-on: ubuntu-latest
# include:
# - python-version: pypy-3.10
# runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.11"]
runs-on: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.11
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
dynamic = ["version"]
description = "Pre-quaxed libraries for multiple dispatch over abstract array types in JAX"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
authors = [
{ name = "Nathaniel Starkman", email = "[email protected]" },
]
Expand Down Expand Up @@ -95,7 +95,7 @@

[tool.mypy]
files = ["src"]
python_version = "3.10"
python_version = "3.11"
warn_unused_configs = true
strict = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
Expand All @@ -115,7 +115,7 @@


[tool.pylint]
py-version = "3.10"
py-version = "3.11"
ignore-paths = [".*/_version.py"]
reports.output-format = "colorized"
similarities.ignore-imports = "yes"
Expand Down
5 changes: 1 addition & 4 deletions src/quaxed/operator.pyi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sys
from operator import abs as abs
from operator import add as add
from operator import and_ as and_
from operator import attrgetter as attrgetter
from operator import call as call
from operator import concat as concat
from operator import contains as contains
from operator import countOf as countOf
Expand Down Expand Up @@ -53,6 +53,3 @@ from operator import sub as sub
from operator import truediv as truediv
from operator import truth as truth
from operator import xor as xor

if sys.version_info >= (3, 11):
from operator import call as call
Loading

0 comments on commit 60e9dbc

Please sign in to comment.