Skip to content

Commit

Permalink
Drop Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
NeilGirdhar committed Sep 24, 2024
1 parent 340bdc5 commit 08f6e13
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 188 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = 'tjax'
version = "1.0.9"
description = 'Tools for JAX.'
readme = 'README.rst'
requires-python = '>=3.10,<3.13'
requires-python = '>=3.11,<3.13'
license = {file = 'LICENSE'}
authors = [{email = '[email protected]'}, {name = 'Neil Girdhar'}]
maintainers = [{email = '[email protected]'}, {name = 'Neil Girdhar'}]
Expand All @@ -17,7 +17,6 @@ classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
Expand Down Expand Up @@ -64,7 +63,7 @@ disable = 'ignored-abstractmethod'

[tool.pylint.master]
jobs = 0
py-version = '3.10'
py-version = '3.11'
load-plugins = [
'pylint.extensions.bad_builtin',
'pylint.extensions.broad_try_clause',
Expand Down
3 changes: 2 additions & 1 deletion tjax/_src/gradient/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

import jax.numpy as jnp
from jax import tree
from typing_extensions import Self, override
from typing_extensions import override
from typing import Self

from tjax.dataclasses import dataclass

Expand Down
3 changes: 2 additions & 1 deletion tjax/_src/shims.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

import jax
from jax.tree_util import Partial
from typing_extensions import ParamSpec, Self, override
from typing_extensions import ParamSpec, override
from typing import Self

from .function_markers import all_wrapper_assignments

Expand Down
Loading

0 comments on commit 08f6e13

Please sign in to comment.