libxrk 0.5.0__tar.gz → 0.6.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.
@@ -1,24 +1,31 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: libxrk
3
- Version: 0.5.0
3
+ Version: 0.6.0
4
4
  Summary: Library for reading AIM XRK files from AIM automotive data loggers
5
5
  License-File: LICENSE
6
6
  Author: Christopher Dewan
7
7
  Author-email: chris.dewan@m3rlin.net
8
8
  Requires-Python: >=3.10
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
9
12
  Classifier: Programming Language :: Python :: 3
10
13
  Classifier: Programming Language :: Python :: 3.10
11
14
  Classifier: Programming Language :: Python :: 3.11
12
15
  Classifier: Programming Language :: Python :: 3.12
13
16
  Classifier: Programming Language :: Python :: 3.13
14
17
  Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Programming Language :: Cython
19
+ Classifier: Topic :: Scientific/Engineering
15
20
  Provides-Extra: dev
16
21
  Provides-Extra: test
17
22
  Requires-Dist: cython (>=3.0.0)
18
- Requires-Dist: numpy (>=1.26.0)
23
+ Requires-Dist: numpy (>=1.26.0) ; python_version < "3.14"
24
+ Requires-Dist: numpy (>=2.4.0) ; python_version >= "3.14"
19
25
  Requires-Dist: parameterized (>=0.9.0) ; extra == "dev"
20
26
  Requires-Dist: parameterized (>=0.9.0) ; extra == "test"
21
- Requires-Dist: pyarrow (>=14.0.0)
27
+ Requires-Dist: pyarrow (>=18.1.0) ; python_version < "3.14"
28
+ Requires-Dist: pyarrow (>=22.0.0) ; python_version >= "3.14"
22
29
  Requires-Dist: pytest (>=7.0.0) ; extra == "dev"
23
30
  Requires-Dist: pytest (>=7.0.0) ; extra == "test"
24
31
  Requires-Dist: setuptools (>=68.0.0) ; extra == "dev"
@@ -73,5 +73,5 @@ if __name__ == "__main__":
73
73
  build(setup_kwargs)
74
74
 
75
75
  # Configure to build in-place
76
- sys.argv = ["build.py", "build_ext", "--inplace"]
76
+ sys.argv = ["cython_build.py", "build_ext", "--inplace"]
77
77
  setup(**setup_kwargs)
@@ -1,16 +1,31 @@
1
1
  [project]
2
2
  name = "libxrk"
3
- version = "0.5.0"
3
+ version = "0.6.0"
4
4
  description = "Library for reading AIM XRK files from AIM automotive data loggers"
5
5
  authors = [
6
6
  {name = "Christopher Dewan",email = "chris.dewan@m3rlin.net"}
7
7
  ]
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.10"
10
+ classifiers = [
11
+ "Development Status :: 4 - Beta",
12
+ "Intended Audience :: Developers",
13
+ "License :: OSI Approved :: MIT License",
14
+ "Programming Language :: Python :: 3",
15
+ "Programming Language :: Python :: 3.10",
16
+ "Programming Language :: Python :: 3.11",
17
+ "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
19
+ "Programming Language :: Python :: 3.14",
20
+ "Programming Language :: Cython",
21
+ "Topic :: Scientific/Engineering",
22
+ ]
10
23
  dependencies = [
11
- "numpy>=1.26.0",
24
+ "numpy>=1.26.0; python_version < '3.14'",
25
+ "numpy>=2.4.0; python_version >= '3.14'",
12
26
  "cython>=3.0.0",
13
- "pyarrow>=14.0.0",
27
+ "pyarrow>=18.1.0; python_version < '3.14'",
28
+ "pyarrow>=22.0.0; python_version >= '3.14'",
14
29
  ]
15
30
 
16
31
  [project.urls]
@@ -45,9 +60,15 @@ exclude = [
45
60
 
46
61
  [tool.poetry.dependencies]
47
62
  python = "^3.10"
48
- numpy = "^1.26.0"
63
+ numpy = [
64
+ {version = ">=1.26.0", python = "<3.14"},
65
+ {version = ">=2.4.0", python = ">=3.14"},
66
+ ]
49
67
  cython = "^3.0.0"
50
- pyarrow = ">=14.0.0"
68
+ pyarrow = [
69
+ {version = ">=18.1.0", python = "<3.14"},
70
+ {version = ">=22.0.0", python = ">=3.14"},
71
+ ]
51
72
 
52
73
  [tool.poetry.group.dev.dependencies]
53
74
  pytest = "^7.0.0"
@@ -60,7 +81,7 @@ parameterized = "^0.9.0"
60
81
 
61
82
  [tool.black]
62
83
  line-length = 100
63
- target-version = ['py312']
84
+ target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
64
85
  include = '\.pyi?$'
65
86
  extend-exclude = '''
66
87
  /(
@@ -153,17 +174,27 @@ deps = ["emsdk-setup"]
153
174
 
154
175
  [tool.cibuildwheel]
155
176
  build = "cp310-* cp311-* cp312-* cp313-* cp314-*"
156
- skip = "*-musllinux_* *-win* *-macos*"
177
+ skip = "*-musllinux_* *-win*"
157
178
  build-verbosity = 1
158
179
 
159
180
  [tool.cibuildwheel.linux]
160
181
  archs = ["x86_64", "aarch64"]
161
182
  before-build = "pip install numpy cython"
162
183
 
184
+ [tool.cibuildwheel.macos]
185
+ archs = ["x86_64", "arm64"]
186
+ before-build = "pip install numpy cython"
187
+
163
188
  [tool.poetry.build]
164
- script = "build.py"
189
+ script = "cython_build.py"
165
190
  generate-setup-file = false
166
191
 
167
192
  [build-system]
168
- requires = ["poetry-core>=2.0.0,<3.0.0", "setuptools>=68.0.0", "cython>=3.0.0", "numpy>=1.26.0"]
193
+ requires = [
194
+ "poetry-core>=2.0.0,<3.0.0",
195
+ "setuptools>=68.0.0",
196
+ "cython>=3.0.0",
197
+ "numpy>=1.26.0; python_version < '3.14'",
198
+ "numpy>=2.4.0; python_version >= '3.14'",
199
+ ]
169
200
  build-backend = "poetry.core.masonry.api"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes