timelined_array 0.1.3__tar.gz → 1.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: timelined_array
3
- Version: 0.1.3
3
+ Version: 1.0.2
4
4
  Summary: Manage easily 1 or multidimensionnal samples numpy arrays that are time related. Extends numpy without removing any of it's abilities on such arrays.
5
5
  Author: Timothe Jost
6
6
  Author-email: Timothe Jost <44769559+JostTim@users.noreply.github.com>
7
7
  License: MIT
8
8
  Requires-Dist: numpy>=2
9
- Requires-Python: >=3.11
9
+ Requires-Python: >=3.12
10
10
  Project-URL: Homepage, https://pypi.org/project/timelined_array/
11
11
  Project-URL: Source, https://github.com/JostTim/timelined_array
12
12
  Description-Content-Type: text/markdown
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "timelined_array"
3
3
  description = "Manage easily 1 or multidimensionnal samples numpy arrays that are time related. Extends numpy without removing any of it's abilities on such arrays."
4
- version = "0.1.3"
4
+ version = "1.0.2"
5
5
  dependencies = ["numpy>=2"]
6
- requires-python = ">=3.11"
6
+ requires-python = ">=3.12"
7
7
  readme = "README.md"
8
8
 
9
9
  [[project.authors]]
@@ -39,6 +39,9 @@ ignore = [
39
39
  "PIE796",
40
40
  ]
41
41
 
42
+ [tool.ruff.lint.per-file-ignores]
43
+ "tests/*" = ["B018"]
44
+
42
45
  [tool.pytest.ini_options]
43
46
  addopts = "-ra -q --pdbcls=IPython.terminal.debugger:TerminalPdb --cov-report xml --cov=timelined_array --junitxml=pytest_results.xml --cov-config=pyproject.toml"
44
47
  testpaths = ["tests"]
@@ -50,12 +53,12 @@ omit = [
50
53
  ]
51
54
 
52
55
  [tool.bumpversion]
53
- current_version = "0.1.3"
56
+ current_version = "1.0.2"
54
57
  parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)'
55
58
  serialize = ["{major}.{minor}.{patch}"]
56
59
  search = "{current_version}"
57
60
  replace = "{new_version}"
58
- regex = false
61
+ regex = true
59
62
  ignore_missing_version = false
60
63
  tag = false
61
64
  sign_tags = false
@@ -4,9 +4,9 @@ description = "Manage easily 1 or multidimensionnal samples numpy arrays that ar
4
4
  authors = [
5
5
  { name = "Timothe Jost", email = "44769559+JostTim@users.noreply.github.com" },
6
6
  ]
7
- version = "0.1.3"
7
+ version = "1.0.2"
8
8
  dependencies = ["numpy>=2"]
9
- requires-python = ">=3.11"
9
+ requires-python = ">=3.12"
10
10
  readme = "README.md"
11
11
  license = { text = "MIT" }
12
12
 
@@ -33,6 +33,9 @@ invalid-method-override = "ignore"
33
33
  [tool.ruff]
34
34
  ignore = ["B010", "PIE796"]
35
35
 
36
+ [tool.ruff.lint.per-file-ignores]
37
+ "tests/*" = ["B018"]
38
+
36
39
  [tool.pytest.ini_options]
37
40
  addopts = "-ra -q --pdbcls=IPython.terminal.debugger:TerminalPdb --cov-report xml --cov=timelined_array --junitxml=pytest_results.xml --cov-config=pyproject.toml"
38
41
  testpaths = ["tests"]
@@ -41,12 +44,12 @@ testpaths = ["tests"]
41
44
  omit = [".vscode/*", ".tests/*"]
42
45
 
43
46
  [tool.bumpversion]
44
- current_version = "0.1.3"
47
+ current_version = "1.0.2"
45
48
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
46
49
  serialize = ["{major}.{minor}.{patch}"]
47
50
  search = "{current_version}"
48
51
  replace = "{new_version}"
49
- regex = false
52
+ regex = true
50
53
  ignore_missing_version = false
51
54
  tag = false
52
55
  sign_tags = false
@@ -0,0 +1,5 @@
1
+ __version__ = "1.0.2"
2
+ __all__ = ["BaseTimeArray", "MaskedTimelinedArray", "Timeline", "TimelinedArray"]
3
+
4
+
5
+ from .time import BaseTimeArray, MaskedTimelinedArray, Timeline, TimelinedArray