-
Notifications
You must be signed in to change notification settings - Fork 391
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pump Version python to 3.12, 3.13. Allow pip install for python 3.12,…
… 3.13 (#210) * - Update python version to 3.12 * - Update python version to 3.12 - Improve CI libraries * - Test for python 3.13 - Remove ORL python 3.8, 3.9 - Fix CI unit-test * - update python version readme * - remove assign exception as e Co-authored-by: Yusuke Oda <[email protected]> * - remove if condition for python lower than 3.8 * - remove condition because python always >= 3.9 * - Create new function `ast_function_def` to handle `type_params` for python 3.12 - Fix CI for python 3.11. * - Remove testcase for python 3.7 * - change to import module Co-authored-by: Yusuke Oda <[email protected]> * - Fix coding convention * - fix isort * - Refactor function `create_function_def` * - remove un-used test case * - remove un-used test case * - remove un-used test case --------- Co-authored-by: Yusuke Oda <[email protected]>
- Loading branch information
1 parent
678cd0e
commit f9c0797
Showing
17 changed files
with
271 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ build-backend = "hatchling.build" | |
name = "latexify-py" | ||
description = "Generates LaTeX math description from Python functions." | ||
readme = "README.md" | ||
requires-python = ">=3.7, <3.12" | ||
requires-python = ">=3.9, <3.14" | ||
license = {text = "Apache Software License 2.0"} | ||
authors = [ | ||
{name = "Yusuke Oda", email = "[email protected]"} | ||
|
@@ -24,11 +24,11 @@ classifiers = [ | |
"Framework :: IPython", | ||
"Framework :: Jupyter", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Topic :: Software Development :: Code Generators", | ||
"Topic :: Text Processing :: Markup :: LaTeX", | ||
|
@@ -43,17 +43,17 @@ dynamic = [ | |
[project.optional-dependencies] | ||
dev = [ | ||
"build>=0.8", | ||
"black>=22.10", | ||
"flake8>=5.0", | ||
"black>=24.3", | ||
"flake8>=6.0", | ||
"isort>=5.10", | ||
"mypy>=0.991", | ||
"mypy>=1.9", | ||
"notebook>=6.5.1", | ||
"pyproject-flake8>=5.0", | ||
"pyproject-flake8>=6.0", | ||
"pytest>=7.1", | ||
"twine>=4.0", | ||
] | ||
mypy = [ | ||
"mypy>=0.991", | ||
"mypy>=1.9", | ||
"pytest>=7.1", | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.