atlas-schema 0.1.0__tar.gz → 0.2.0__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.
@@ -156,3 +156,9 @@ Thumbs.db
156
156
  # Common editor files
157
157
  *~
158
158
  *.swp
159
+
160
+ # pyenv
161
+ .python-version
162
+
163
+ # root files
164
+ *.root
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: atlas-schema
3
- Version: 0.1.0
3
+ Version: 0.2.0
4
4
  Summary: Helper python package for ATLAS Common NTuple Analysis work.
5
5
  Project-URL: Homepage, https://github.com/scipp-atlas/atlas-schema
6
6
  Project-URL: Bug Tracker, https://github.com/scipp-atlas/atlas-schema/issues
@@ -217,14 +217,13 @@ Classifier: Operating System :: OS Independent
217
217
  Classifier: Programming Language :: Python
218
218
  Classifier: Programming Language :: Python :: 3
219
219
  Classifier: Programming Language :: Python :: 3 :: Only
220
- Classifier: Programming Language :: Python :: 3.8
221
220
  Classifier: Programming Language :: Python :: 3.9
222
221
  Classifier: Programming Language :: Python :: 3.10
223
222
  Classifier: Programming Language :: Python :: 3.11
224
223
  Classifier: Programming Language :: Python :: 3.12
225
224
  Classifier: Topic :: Scientific/Engineering
226
225
  Classifier: Typing :: Typed
227
- Requires-Python: >=3.8
226
+ Requires-Python: >=3.9
228
227
  Requires-Dist: coffea[dask]>=2024.4.1
229
228
  Provides-Extra: dev
230
229
  Requires-Dist: pytest-cov>=3; extra == 'dev'
@@ -244,7 +243,7 @@ Requires-Dist: tbump>=6.7.0; extra == 'test'
244
243
  Requires-Dist: twine; extra == 'test'
245
244
  Description-Content-Type: text/markdown
246
245
 
247
- # atlas-schema v0.1.0
246
+ # atlas-schema v0.2.0
248
247
 
249
248
  [![Actions Status][actions-badge]][actions-link]
250
249
  [![Documentation Status][rtd-badge]][rtd-link]
@@ -1,4 +1,4 @@
1
- # atlas-schema v0.1.0
1
+ # atlas-schema v0.2.0
2
2
 
3
3
  [![Actions Status][actions-badge]][actions-link]
4
4
  [![Documentation Status][rtd-badge]][rtd-link]
@@ -10,7 +10,7 @@ authors = [
10
10
  description = "Helper python package for ATLAS Common NTuple Analysis work."
11
11
  readme = "README.md"
12
12
  license.file = "LICENSE"
13
- requires-python = ">=3.8"
13
+ requires-python = ">=3.9"
14
14
  classifiers = [
15
15
  "Development Status :: 1 - Planning",
16
16
  "Intended Audience :: Science/Research",
@@ -20,7 +20,6 @@ classifiers = [
20
20
  "Programming Language :: Python",
21
21
  "Programming Language :: Python :: 3",
22
22
  "Programming Language :: Python :: 3 :: Only",
23
- "Programming Language :: Python :: 3.8",
24
23
  "Programming Language :: Python :: 3.9",
25
24
  "Programming Language :: Python :: 3.10",
26
25
  "Programming Language :: Python :: 3.11",
@@ -111,7 +110,7 @@ report.exclude_also = [
111
110
 
112
111
  [tool.mypy]
113
112
  files = ["src", "tests"]
114
- python_version = "3.8"
113
+ python_version = "3.9"
115
114
  warn_unused_configs = true
116
115
  strict = true
117
116
  enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
@@ -182,7 +181,7 @@ typing-modules = ["atlas_schema.typing_compat"]
182
181
 
183
182
 
184
183
  [tool.pylint]
185
- py-version = "3.8"
184
+ py-version = "3.9"
186
185
  ignore-paths = [".*/_version.py"]
187
186
  reports.output-format = "colorized"
188
187
  similarities.ignore-imports = "yes"
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.1.0'
16
- __version_tuple__ = version_tuple = (0, 1, 0)
15
+ __version__ = version = '0.2.0'
16
+ __version_tuple__ = version_tuple = (0, 2, 0)
@@ -5,15 +5,10 @@ Typing helpers.
5
5
  from __future__ import annotations
6
6
 
7
7
  import sys
8
- from typing import Dict, Type
8
+ from typing import Annotated
9
9
 
10
10
  import awkward
11
11
 
12
- if sys.version_info >= (3, 9):
13
- from typing import Annotated
14
- else:
15
- from typing_extensions import Annotated
16
-
17
12
  if sys.version_info >= (3, 10):
18
13
  from typing import TypeAlias
19
14
  else:
@@ -24,6 +19,6 @@ if sys.version_info >= (3, 11):
24
19
  else:
25
20
  from typing_extensions import Self
26
21
 
27
- Behavior: TypeAlias = Dict[str, Type[awkward.Record]]
22
+ Behavior: TypeAlias = dict[str, type[awkward.Record]]
28
23
 
29
24
  __all__ = ("Annotated", "Behavior", "Self")
File without changes