Skip to content
Snippets Groups Projects
Commit 5a5d54d27068 authored by Pierre Augier's avatar Pierre Augier
Browse files

transonic 0.7.3 for py>3.10, beniget~=0.4.2 and gast~=0.6.0

parent 64f9ff428325
No related branches found
No related tags found
1 merge request!145transonic 0.7.3 for py>3.10, beniget~=0.4.2 and gast~=0.6.0
Pipeline #93843 passed
# Release notes
See also the
[unreleased changes](https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.7.2...branch%2Fdefault).
[unreleased changes](https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.7.3...branch%2Fdefault).
## [0.7.3] (2024-12-02)
- Support Python 3.10 to 3.13 with beniget~=0.4.2 and gast~=0.6.0 (like Pythran 0.17)
## [0.7.2] (2024-08-26)
......@@ -285,3 +289,4 @@
[0.7.0]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.6.4...0.7.0
[0.7.1]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.7.0...0.7.1
[0.7.2]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.7.1...0.7.2
[0.7.3]: https://foss.heptapod.net/fluiddyn/transonic/-/compare/0.7.2...0.7.3
......@@ -13,7 +13,7 @@
@nox.parametrize("with_pythran", [0, 1])
@nox.session
def test(session, with_pythran, with_cython):
command = "pdm sync -G base_test"
command = "pdm sync -G base-test"
session.run_always(*command.split(), external=True)
py_version = (
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -4,8 +4,8 @@
[project]
name = "transonic"
version = "0.7.2"
version = "0.7.3"
description = "Make your Python code fly at transonic speeds!"
authors = [
{ name = "Pierre Augier", email = "pierre.augier@univ-grenoble-alpes.fr" },
]
......@@ -8,12 +8,12 @@
description = "Make your Python code fly at transonic speeds!"
authors = [
{ name = "Pierre Augier", email = "pierre.augier@univ-grenoble-alpes.fr" },
]
dependencies = ["autopep8", "beniget ~=0.4.0", "gast ~=0.5.0", "numpy"]
requires-python = ">= 3.9"
dependencies = ["autopep8", "beniget ~=0.4.2", "gast ~=0.6.0", "numpy"]
requires-python = ">= 3.10"
readme = "README.md"
license = { text = "BSD License" }
keywords = ["pythran"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
......@@ -14,10 +14,9 @@
readme = "README.md"
license = { text = "BSD License" }
keywords = ["pythran"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
......@@ -21,6 +20,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
......@@ -44,7 +44,7 @@
[tool.pdm.dev-dependencies]
base_test = [
base-test = [
"black",
"coverage[toml]",
"mpi4py",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment