las-read-rs 0.1.6__tar.gz → 0.1.7__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.
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/.github/workflows/ci.yml +1 -1
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/Cargo.lock +17 -17
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/Cargo.toml +3 -3
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/PKG-INFO +1 -1
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/pyproject.toml +1 -1
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/.github/workflows/flujodetrabajo.yml +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/.gitignore +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/Agents.md +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/README.md +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/benchmark_09.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/benchmark_performance.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/demo.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/python/lasio_rs/__init__.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/python/lasio_rs/las.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/sample.las +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/src/bin/lasio_json.rs +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/src/las_items.rs +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/src/lib.rs +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/src/pybindings.rs +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/src/reader.rs +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/tests/benchmark.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/tests/compare.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/tests/integration.rs +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/tests/test_basic.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/tests/verify_api_alignment.py +0 -0
- {las_read_rs-0.1.6 → las_read_rs-0.1.7}/tests/verify_python_binding.py +0 -0
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
pip install pandas polars openpyxl
|
|
42
42
|
- name: Build and Install Wheel
|
|
43
43
|
run: |
|
|
44
|
-
maturin build --release --out dist
|
|
44
|
+
maturin build --release --out dist --interpreter python3
|
|
45
45
|
pip install dist/*.whl --force-reinstall
|
|
46
46
|
- name: Run Python Tests
|
|
47
47
|
run: python tests/test_basic.py
|
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "_lasio_rs"
|
|
7
|
+
version = "0.1.7"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"codepage",
|
|
10
|
+
"encoding_rs",
|
|
11
|
+
"indexmap",
|
|
12
|
+
"log",
|
|
13
|
+
"ndarray",
|
|
14
|
+
"nom",
|
|
15
|
+
"pyo3",
|
|
16
|
+
"rayon",
|
|
17
|
+
"serde",
|
|
18
|
+
"serde_json",
|
|
19
|
+
"thiserror",
|
|
20
|
+
]
|
|
21
|
+
|
|
5
22
|
[[package]]
|
|
6
23
|
name = "autocfg"
|
|
7
24
|
version = "1.5.0"
|
|
@@ -114,23 +131,6 @@ version = "1.0.17"
|
|
|
114
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
132
|
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
116
133
|
|
|
117
|
-
[[package]]
|
|
118
|
-
name = "las_read_rs"
|
|
119
|
-
version = "0.1.6"
|
|
120
|
-
dependencies = [
|
|
121
|
-
"codepage",
|
|
122
|
-
"encoding_rs",
|
|
123
|
-
"indexmap",
|
|
124
|
-
"log",
|
|
125
|
-
"ndarray",
|
|
126
|
-
"nom",
|
|
127
|
-
"pyo3",
|
|
128
|
-
"rayon",
|
|
129
|
-
"serde",
|
|
130
|
-
"serde_json",
|
|
131
|
-
"thiserror",
|
|
132
|
-
]
|
|
133
|
-
|
|
134
134
|
[[package]]
|
|
135
135
|
name = "libc"
|
|
136
136
|
version = "0.2.180"
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[package]
|
|
2
|
-
name = "
|
|
3
|
-
version = "0.1.
|
|
2
|
+
name = "_lasio_rs" # Sugiero que coincida con el nombre en PyPI para evitar confusiones
|
|
3
|
+
version = "0.1.7" # Sube la versión para el próximo release
|
|
4
4
|
edition = "2021"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
|
|
7
7
|
[lib]
|
|
8
|
-
name = "
|
|
8
|
+
name = "_lasio_rs" # El nombre de la librería que importará Python
|
|
9
9
|
crate-type = ["cdylib"] # rlib no suele ser necesario para extensiones de Python
|
|
10
10
|
|
|
11
11
|
[dependencies]
|
|
@@ -5,7 +5,7 @@ build-backend = "maturin"
|
|
|
5
5
|
[project]
|
|
6
6
|
# Este debe ser exactamente el nombre en PyPI
|
|
7
7
|
name = "las-read-rs"
|
|
8
|
-
version = "0.1.
|
|
8
|
+
version = "0.1.7"
|
|
9
9
|
description = "A high-performance LAS (Log ASCII Standard) file reader written in Rust"
|
|
10
10
|
authors = [{name = "Emiliano Flores", email = "jemilianofl@github.com"}]
|
|
11
11
|
readme = "README.md"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|