Skip to content

Commit b743ef0

Browse files
author
github-actions
committed
sync version to 1.3.1
1 parent 234d3ed commit b743ef0

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
author = 'Klemen Zaletelj, Domen Gorjup, Janko Slavič'
2525

2626
# The short X.Y version
27-
version = '1.2'
27+
version = '1.3'
2828
# The full version, including alpha/beta/rc tags
29-
release = '1.2.0'
29+
release = '1.3.1'
3030

3131

3232
# -- General configuration ---------------------------------------------------

pyidi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.2.0'
1+
__version__ = "1.3.1"
22
# from .pyidi import *
33
from .pyidi_legacy import pyIDI
44
from . import tools

pyproject.toml

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
[build-system]
2-
requires = ["hatchling"]
2+
requires = [
3+
"hatchling",
4+
]
35
build-backend = "hatchling.build"
46

57
[project]
68
name = "pyidi"
7-
version = '1.2.0'
8-
authors = [{name = "Klemen Zaletelj, Domen Gorjup, Janko Slavič et al.", email = "[email protected]"}]
9-
maintainers = [{name = "Klemen Zaletelj, Domen Gorjup, Janko Slavič et al.", email = "[email protected]"}]
9+
version = "1.3.1"
1010
license = "MIT"
1111
description = "Python Image Displacement Identification."
1212
readme = "README.md"
13-
keywords = ['computer vision', 'dic', 'gradient-based', 'displacement identification']
13+
keywords = [
14+
"computer vision",
15+
"dic",
16+
"gradient-based",
17+
"displacement identification",
18+
]
1419
requires-python = ">=3.10"
1520
dependencies = [
1621
"matplotlib>=3.0.0",
@@ -27,15 +32,22 @@ dependencies = [
2732
"imageio[pyav]",
2833
"opencv-python",
2934
]
30-
3135
classifiers = [
32-
'Development Status :: 5 - Production/Stable',
33-
'Intended Audience :: Developers',
34-
'Topic :: Scientific/Engineering',
35-
'Programming Language :: Python :: 3.10',
36+
"Development Status :: 5 - Production/Stable",
37+
"Intended Audience :: Developers",
38+
"Topic :: Scientific/Engineering",
39+
"Programming Language :: Python :: 3.10",
3640
"License :: OSI Approved :: MIT License",
3741
]
3842

43+
[[project.authors]]
44+
name = "Klemen Zaletelj, Domen Gorjup, Janko Slavič et al."
45+
46+
47+
[[project.maintainers]]
48+
name = "Klemen Zaletelj, Domen Gorjup, Janko Slavič et al."
49+
50+
3951
[project.optional-dependencies]
4052
dev = [
4153
"sphinx",
@@ -47,7 +59,6 @@ dev = [
4759
"nbsphinx",
4860
"nbsphinx_link",
4961
]
50-
5162
qt = [
5263
"pyqt6",
5364
"pyqtgraph",
@@ -60,5 +71,5 @@ source = "https://github.com/ladisk/pyidi"
6071

6172
[tool.hatch.build.targets.sdist]
6273
include = [
63-
"pyidi/*"
64-
]
74+
"pyidi/*",
75+
]

0 commit comments

Comments
 (0)