pydisseqt 0.1.12__tar.gz → 0.1.14__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -23,7 +23,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
23
23
  [[package]]
24
24
  name = "disseqt"
25
25
  version = "0.1.0"
26
- source = "git+https://github.com/pulseq-frame/disseqt.git?branch=dsv#3fd520a1807e3a518b7d1acd0372a6a7640eaa12"
26
+ source = "git+https://github.com/pulseq-frame/disseqt.git?branch=dsv#1b6ff0ca9564ac5d9ae3e76f17cb35f1fd0d149c"
27
27
  dependencies = [
28
28
  "pulseq-rs",
29
29
  "thiserror",
@@ -105,8 +105,8 @@ dependencies = [
105
105
 
106
106
  [[package]]
107
107
  name = "pulseq-rs"
108
- version = "0.1.2"
109
- source = "git+https://github.com/pulseq-frame/pulseq-rs.git#d6d9f90a33796d7977353f8a04914b70edb9a466"
108
+ version = "0.1.3"
109
+ source = "git+https://github.com/pulseq-frame/pulseq-rs.git#5f4d450c0db6a0845fa4ac1af7ffc8e6a94a52a9"
110
110
  dependencies = [
111
111
  "ezpc",
112
112
  "thiserror",
@@ -114,7 +114,7 @@ dependencies = [
114
114
 
115
115
  [[package]]
116
116
  name = "pydisseqt"
117
- version = "0.1.12"
117
+ version = "0.1.14"
118
118
  dependencies = [
119
119
  "disseqt",
120
120
  "pyo3",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "pydisseqt"
3
- version = "0.1.12"
3
+ version = "0.1.14"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: pydisseqt
3
+ Version: 0.1.14
4
+ Classifier: Programming Language :: Rust
5
+ Classifier: Programming Language :: Python :: Implementation :: CPython
6
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
7
+ License-File: LICENSE
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
+
11
+ Python wrapper around [disseqt](https://github.com/pulseq-frame/disseqt) built using https://github.com/PyO3/maturin
12
+
13
+ # Changelog:
14
+
15
+ - 0.1.14
16
+ - Updated disseqt to support fixed ADC resolution that does not align to grid
17
+ - 0.1.13
18
+ - Updated pulseq-rs for support of shim shape 0
19
+ - 0.1.12
20
+ - Updated typing info
21
+ - 0.1.11
22
+ - Implemented pTx extension to correctly forward through pydisseqt
23
+ - 0.1.10
24
+ - Updated pulseq-rs: can now load .seq files using the rfshim pTx extension
25
+ - 0.1.9
26
+ - Updated disseqt: Now respects ref_voltage for correct units on .dsv import
27
+ - 0.1.8
28
+ - Updated disseqt: Make pulse phase (RFP) file optional as it is not always provided
29
+ - 0.1.5
30
+ - Switched to WIP disseqt that includes a .dsv backend
31
+ - 0.1.4
32
+ - Updated disseqt: allow backwards integration in integrate and integrate_one (t_start >= t_end)
33
+ - 0.1.3
34
+ - Updated disseqt, fixed trap integration bug
35
+ - 0.1.2
36
+ - Updated pulseq-rs: allow empty .seq file sections
37
+ - 0.1.1
38
+ - Updated disseqt, use double precision floats
39
+ - 0.1.0
40
+ - Baseline
41
+
@@ -0,0 +1,30 @@
1
+ Python wrapper around [disseqt](https://github.com/pulseq-frame/disseqt) built using https://github.com/PyO3/maturin
2
+
3
+ # Changelog:
4
+
5
+ - 0.1.14
6
+ - Updated disseqt to support fixed ADC resolution that does not align to grid
7
+ - 0.1.13
8
+ - Updated pulseq-rs for support of shim shape 0
9
+ - 0.1.12
10
+ - Updated typing info
11
+ - 0.1.11
12
+ - Implemented pTx extension to correctly forward through pydisseqt
13
+ - 0.1.10
14
+ - Updated pulseq-rs: can now load .seq files using the rfshim pTx extension
15
+ - 0.1.9
16
+ - Updated disseqt: Now respects ref_voltage for correct units on .dsv import
17
+ - 0.1.8
18
+ - Updated disseqt: Make pulse phase (RFP) file optional as it is not always provided
19
+ - 0.1.5
20
+ - Switched to WIP disseqt that includes a .dsv backend
21
+ - 0.1.4
22
+ - Updated disseqt: allow backwards integration in integrate and integrate_one (t_start >= t_end)
23
+ - 0.1.3
24
+ - Updated disseqt, fixed trap integration bug
25
+ - 0.1.2
26
+ - Updated pulseq-rs: allow empty .seq file sections
27
+ - 0.1.1
28
+ - Updated disseqt, use double precision floats
29
+ - 0.1.0
30
+ - Baseline
pydisseqt-0.1.12/PKG-INFO DELETED
@@ -1,47 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: pydisseqt
3
- Version: 0.1.12
4
- Classifier: Programming Language :: Rust
5
- Classifier: Programming Language :: Python :: Implementation :: CPython
6
- Classifier: Programming Language :: Python :: Implementation :: PyPy
7
- License-File: LICENSE
8
- Requires-Python: >=3.8
9
- Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
-
11
- Python wrapper around [disseqt](https://github.com/pulseq-frame/disseqt) built using https://github.com/PyO3/maturin
12
-
13
- # Changelog:
14
-
15
- ### 0.1.12
16
- - Updated typing info
17
-
18
- ### 0.1.11
19
- - Implemented pTx extension to correctly forward through pydisseqt
20
-
21
- ### 0.1.10
22
- - Updated pulseq-rs: can now load .seq files using the rfshim pTx extension
23
-
24
- ### 0.1.9
25
- - Updated disseqt: Now respects ref_voltage for correct units on .dsv import
26
-
27
- ### 0.1.8
28
- - Updated disseqt: Make pulse phase (RFP) file optional as it is not always provided
29
-
30
- ### 0.1.5
31
- - Switched to WIP disseqt that includes a .dsv backend
32
-
33
- ### 0.1.4
34
- - Updated disseqt: allow backwards integration in integrate and integrate_one (t_start >= t_end)
35
-
36
- ### 0.1.3
37
- - Updated disseqt, fixed trap integration bug
38
-
39
- ### 0.1.2
40
- - Updated pulseq-rs: allow empty .seq file sections
41
-
42
- ### 0.1.1
43
- - Updated disseqt, use double precision floats
44
-
45
- ### 0.1.0
46
- Baseline
47
-
@@ -1,36 +0,0 @@
1
- Python wrapper around [disseqt](https://github.com/pulseq-frame/disseqt) built using https://github.com/PyO3/maturin
2
-
3
- # Changelog:
4
-
5
- ### 0.1.12
6
- - Updated typing info
7
-
8
- ### 0.1.11
9
- - Implemented pTx extension to correctly forward through pydisseqt
10
-
11
- ### 0.1.10
12
- - Updated pulseq-rs: can now load .seq files using the rfshim pTx extension
13
-
14
- ### 0.1.9
15
- - Updated disseqt: Now respects ref_voltage for correct units on .dsv import
16
-
17
- ### 0.1.8
18
- - Updated disseqt: Make pulse phase (RFP) file optional as it is not always provided
19
-
20
- ### 0.1.5
21
- - Switched to WIP disseqt that includes a .dsv backend
22
-
23
- ### 0.1.4
24
- - Updated disseqt: allow backwards integration in integrate and integrate_one (t_start >= t_end)
25
-
26
- ### 0.1.3
27
- - Updated disseqt, fixed trap integration bug
28
-
29
- ### 0.1.2
30
- - Updated pulseq-rs: allow empty .seq file sections
31
-
32
- ### 0.1.1
33
- - Updated disseqt, use double precision floats
34
-
35
- ### 0.1.0
36
- Baseline
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes