pywinpty 2.0.12__tar.gz → 2.0.14__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.
- {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/workflows/linux_sdist.yml +1 -1
- {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/workflows/windows_build.yml +3 -3
- {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/workflows/windows_release.yml +2 -2
- {pywinpty-2.0.12 → pywinpty-2.0.14}/.gitignore +4 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/CHANGELOG.md +38 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/Cargo.lock +146 -153
- {pywinpty-2.0.12 → pywinpty-2.0.14}/Cargo.toml +3 -3
- {pywinpty-2.0.12 → pywinpty-2.0.14}/PKG-INFO +2 -2
- {pywinpty-2.0.12 → pywinpty-2.0.14}/src/lib.rs +2 -2
- {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/dependabot.yml +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/scripts/copy_winpty.sh +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/LICENSE.txt +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/MANIFEST.in +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/README.md +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/RELEASE.md +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/pyproject.toml +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/runtests.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/__init__.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/enums.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/ptyprocess.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/tests/__init__.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/tests/test_pty.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/tests/test_ptyprocess.py +0 -0
- {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/winpty.pyi +0 -0
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
strategy:
|
|
21
21
|
fail-fast: false
|
|
22
22
|
matrix:
|
|
23
|
-
PYTHON_VERSION: ["3.
|
|
23
|
+
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout branch
|
|
26
26
|
uses: actions/checkout@v4
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
override: true
|
|
33
33
|
components: rustfmt, clippy
|
|
34
34
|
- name: Install miniconda
|
|
35
|
-
uses: conda-incubator/setup-miniconda@
|
|
35
|
+
uses: conda-incubator/setup-miniconda@v3
|
|
36
36
|
with:
|
|
37
37
|
auto-update-conda: true
|
|
38
38
|
activate-environment: test
|
|
@@ -46,7 +46,7 @@ jobs:
|
|
|
46
46
|
run: conda install -y winpty
|
|
47
47
|
- name: Install build/test dependencies
|
|
48
48
|
shell: bash -l {0}
|
|
49
|
-
run: pip install maturin toml pytest
|
|
49
|
+
run: pip install maturin toml pytest flaky
|
|
50
50
|
- name: Build pywinpty
|
|
51
51
|
shell: bash -l {0}
|
|
52
52
|
run: maturin develop
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
strategy:
|
|
16
16
|
fail-fast: false
|
|
17
17
|
matrix:
|
|
18
|
-
PYTHON_VERSION: ["3.
|
|
18
|
+
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
19
19
|
steps:
|
|
20
20
|
- name: Checkout branch
|
|
21
21
|
uses: actions/checkout@v4
|
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
override: true
|
|
28
28
|
components: rustfmt, clippy
|
|
29
29
|
- name: Install miniconda
|
|
30
|
-
uses: conda-incubator/setup-miniconda@
|
|
30
|
+
uses: conda-incubator/setup-miniconda@v3
|
|
31
31
|
with:
|
|
32
32
|
auto-update-conda: true
|
|
33
33
|
activate-environment: test
|
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
## Version 2.0.14 (2024/10/17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Pull Requests Merged
|
|
5
|
+
|
|
6
|
+
* [PR 453](https://github.com/andfoy/pywinpty/pull/453) - Update PyO3 to 0.22.3 and winpty-rs to 0.4.0, by [@andfoy](https://github.com/andfoy)
|
|
7
|
+
* [PR 452](https://github.com/andfoy/pywinpty/pull/452) - Add support for Python 3.13, by [@andfoy](https://github.com/andfoy) ([451](https://github.com/andfoy/pywinpty/issues/451))
|
|
8
|
+
|
|
9
|
+
In this release 2 pull requests were closed.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## Version 2.0.13 (2024/02/26)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Pull Requests Merged
|
|
16
|
+
|
|
17
|
+
* [PR 399](https://github.com/andfoy/pywinpty/pull/399) - Bump target-lexicon from 0.12.13 to 0.12.14, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
18
|
+
* [PR 398](https://github.com/andfoy/pywinpty/pull/398) - Bump winpty-rs from 0.3.14 to 0.3.15, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
19
|
+
* [PR 397](https://github.com/andfoy/pywinpty/pull/397) - Bump syn from 2.0.43 to 2.0.50, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
20
|
+
* [PR 396](https://github.com/andfoy/pywinpty/pull/396) - Remove pytest-lazy-fixture from test dependencies, by [@andfoy](https://github.com/andfoy)
|
|
21
|
+
* [PR 395](https://github.com/andfoy/pywinpty/pull/395) - Bump rustix from 0.38.30 to 0.38.31, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
22
|
+
* [PR 393](https://github.com/andfoy/pywinpty/pull/393) - Bump once_cell from 1.18.0 to 1.19.0, by [@dependabot[bot]](https://github.com/apps/dependabot) ([](https://github.com/CI</issues/), [](https://github.com/CI</issues/), [](https://github.com/CI</issues/))
|
|
23
|
+
* [PR 392](https://github.com/andfoy/pywinpty/pull/392) - Bump smallvec from 1.11.1 to 1.13.1, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
24
|
+
* [PR 390](https://github.com/andfoy/pywinpty/pull/390) - Bump parking_lot_core from 0.9.8 to 0.9.9, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
25
|
+
* [PR 388](https://github.com/andfoy/pywinpty/pull/388) - Bump target-lexicon from 0.12.11 to 0.12.13, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
26
|
+
* [PR 387](https://github.com/andfoy/pywinpty/pull/387) - Bump winpty-rs from 0.3.13 to 0.3.14, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
27
|
+
* [PR 386](https://github.com/andfoy/pywinpty/pull/386) - Bump pyo3 from 0.19.2 to 0.20.2, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
28
|
+
* [PR 385](https://github.com/andfoy/pywinpty/pull/385) - Bump proc-macro2 from 1.0.68 to 1.0.78, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
29
|
+
* [PR 384](https://github.com/andfoy/pywinpty/pull/384) - Bump linux-raw-sys from 0.4.8 to 0.4.13, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
30
|
+
* [PR 375](https://github.com/andfoy/pywinpty/pull/375) - Bump conda-incubator/setup-miniconda from 2 to 3, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
31
|
+
* [PR 374](https://github.com/andfoy/pywinpty/pull/374) - Bump errno from 0.3.4 to 0.3.8, by [@dependabot[bot]](https://github.com/apps/dependabot) ([](https://github.com/<code>to_string()</issues/))
|
|
32
|
+
* [PR 369](https://github.com/andfoy/pywinpty/pull/369) - Bump lock_api from 0.4.10 to 0.4.11, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
33
|
+
* [PR 368](https://github.com/andfoy/pywinpty/pull/368) - Bump rustix from 0.38.17 to 0.38.21, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
34
|
+
* [PR 362](https://github.com/andfoy/pywinpty/pull/362) - Bump num-traits from 0.2.16 to 0.2.17, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
35
|
+
|
|
36
|
+
In this release 18 pull requests were closed.
|
|
37
|
+
|
|
38
|
+
|
|
1
39
|
## Version 2.0.12 (2023/10/06)
|
|
2
40
|
|
|
3
41
|
|
|
@@ -4,30 +4,15 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "autocfg"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.4.0"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "bitflags"
|
|
13
|
-
version = "
|
|
13
|
+
version = "2.6.0"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
16
|
-
|
|
17
|
-
[[package]]
|
|
18
|
-
name = "bitflags"
|
|
19
|
-
version = "2.4.0"
|
|
20
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
21
|
-
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
|
|
22
|
-
|
|
23
|
-
[[package]]
|
|
24
|
-
name = "cc"
|
|
25
|
-
version = "1.0.83"
|
|
26
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
-
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
28
|
-
dependencies = [
|
|
29
|
-
"libc",
|
|
30
|
-
]
|
|
15
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
|
31
16
|
|
|
32
17
|
[[package]]
|
|
33
18
|
name = "cfg-if"
|
|
@@ -37,15 +22,15 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
37
22
|
|
|
38
23
|
[[package]]
|
|
39
24
|
name = "either"
|
|
40
|
-
version = "1.
|
|
25
|
+
version = "1.13.0"
|
|
41
26
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
-
checksum = "
|
|
27
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
|
43
28
|
|
|
44
29
|
[[package]]
|
|
45
30
|
name = "enum-primitive-derive"
|
|
46
|
-
version = "0.
|
|
31
|
+
version = "0.3.0"
|
|
47
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
-
checksum = "
|
|
33
|
+
checksum = "ba7795da175654fe16979af73f81f26a8ea27638d8d9823d317016888a63dc4c"
|
|
49
34
|
dependencies = [
|
|
50
35
|
"num-traits",
|
|
51
36
|
"quote",
|
|
@@ -54,129 +39,98 @@ dependencies = [
|
|
|
54
39
|
|
|
55
40
|
[[package]]
|
|
56
41
|
name = "errno"
|
|
57
|
-
version = "0.3.
|
|
42
|
+
version = "0.3.9"
|
|
58
43
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
59
|
-
checksum = "
|
|
44
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
|
60
45
|
dependencies = [
|
|
61
|
-
"errno-dragonfly",
|
|
62
46
|
"libc",
|
|
63
47
|
"windows-sys",
|
|
64
48
|
]
|
|
65
49
|
|
|
66
50
|
[[package]]
|
|
67
|
-
name = "
|
|
68
|
-
version = "0.
|
|
51
|
+
name = "heck"
|
|
52
|
+
version = "0.5.0"
|
|
69
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "
|
|
71
|
-
dependencies = [
|
|
72
|
-
"cc",
|
|
73
|
-
"libc",
|
|
74
|
-
]
|
|
54
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
75
55
|
|
|
76
56
|
[[package]]
|
|
77
57
|
name = "home"
|
|
78
|
-
version = "0.5.
|
|
58
|
+
version = "0.5.9"
|
|
79
59
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
-
checksum = "
|
|
60
|
+
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
81
61
|
dependencies = [
|
|
82
62
|
"windows-sys",
|
|
83
63
|
]
|
|
84
64
|
|
|
85
65
|
[[package]]
|
|
86
66
|
name = "indoc"
|
|
87
|
-
version = "
|
|
67
|
+
version = "2.0.5"
|
|
88
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
-
checksum = "
|
|
69
|
+
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
90
70
|
|
|
91
71
|
[[package]]
|
|
92
72
|
name = "libc"
|
|
93
|
-
version = "0.2.
|
|
73
|
+
version = "0.2.160"
|
|
94
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
-
checksum = "
|
|
75
|
+
checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f"
|
|
96
76
|
|
|
97
77
|
[[package]]
|
|
98
78
|
name = "linux-raw-sys"
|
|
99
|
-
version = "0.4.
|
|
100
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
-
checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db"
|
|
102
|
-
|
|
103
|
-
[[package]]
|
|
104
|
-
name = "lock_api"
|
|
105
|
-
version = "0.4.10"
|
|
79
|
+
version = "0.4.14"
|
|
106
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
-
checksum = "
|
|
108
|
-
dependencies = [
|
|
109
|
-
"autocfg",
|
|
110
|
-
"scopeguard",
|
|
111
|
-
]
|
|
81
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
|
112
82
|
|
|
113
83
|
[[package]]
|
|
114
84
|
name = "memoffset"
|
|
115
|
-
version = "0.9.
|
|
85
|
+
version = "0.9.1"
|
|
116
86
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
87
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
118
88
|
dependencies = [
|
|
119
89
|
"autocfg",
|
|
120
90
|
]
|
|
121
91
|
|
|
122
92
|
[[package]]
|
|
123
93
|
name = "num-traits"
|
|
124
|
-
version = "0.2.
|
|
94
|
+
version = "0.2.19"
|
|
125
95
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
-
checksum = "
|
|
96
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
127
97
|
dependencies = [
|
|
128
98
|
"autocfg",
|
|
129
99
|
]
|
|
130
100
|
|
|
131
101
|
[[package]]
|
|
132
102
|
name = "once_cell"
|
|
133
|
-
version = "1.
|
|
103
|
+
version = "1.20.2"
|
|
134
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
-
checksum = "
|
|
105
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
136
106
|
|
|
137
107
|
[[package]]
|
|
138
|
-
name = "
|
|
139
|
-
version = "
|
|
140
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
142
|
-
dependencies = [
|
|
143
|
-
"lock_api",
|
|
144
|
-
"parking_lot_core",
|
|
145
|
-
]
|
|
146
|
-
|
|
147
|
-
[[package]]
|
|
148
|
-
name = "parking_lot_core"
|
|
149
|
-
version = "0.9.8"
|
|
108
|
+
name = "portable-atomic"
|
|
109
|
+
version = "1.9.0"
|
|
150
110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
152
|
-
dependencies = [
|
|
153
|
-
"cfg-if",
|
|
154
|
-
"libc",
|
|
155
|
-
"redox_syscall",
|
|
156
|
-
"smallvec",
|
|
157
|
-
"windows-targets",
|
|
158
|
-
]
|
|
111
|
+
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"
|
|
159
112
|
|
|
160
113
|
[[package]]
|
|
161
114
|
name = "proc-macro2"
|
|
162
|
-
version = "1.0.
|
|
115
|
+
version = "1.0.88"
|
|
163
116
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
-
checksum = "
|
|
117
|
+
checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9"
|
|
165
118
|
dependencies = [
|
|
166
119
|
"unicode-ident",
|
|
167
120
|
]
|
|
168
121
|
|
|
169
122
|
[[package]]
|
|
170
123
|
name = "pyo3"
|
|
171
|
-
version = "0.
|
|
124
|
+
version = "0.22.5"
|
|
172
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
-
checksum = "
|
|
126
|
+
checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
|
|
174
127
|
dependencies = [
|
|
175
128
|
"cfg-if",
|
|
176
129
|
"indoc",
|
|
177
130
|
"libc",
|
|
178
131
|
"memoffset",
|
|
179
|
-
"
|
|
132
|
+
"once_cell",
|
|
133
|
+
"portable-atomic",
|
|
180
134
|
"pyo3-build-config",
|
|
181
135
|
"pyo3-ffi",
|
|
182
136
|
"pyo3-macros",
|
|
@@ -185,9 +139,9 @@ dependencies = [
|
|
|
185
139
|
|
|
186
140
|
[[package]]
|
|
187
141
|
name = "pyo3-build-config"
|
|
188
|
-
version = "0.
|
|
142
|
+
version = "0.22.5"
|
|
189
143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
-
checksum = "
|
|
144
|
+
checksum = "bc38c5feeb496c8321091edf3d63e9a6829eab4b863b4a6a65f26f3e9cc6b179"
|
|
191
145
|
dependencies = [
|
|
192
146
|
"once_cell",
|
|
193
147
|
"target-lexicon",
|
|
@@ -195,9 +149,9 @@ dependencies = [
|
|
|
195
149
|
|
|
196
150
|
[[package]]
|
|
197
151
|
name = "pyo3-ffi"
|
|
198
|
-
version = "0.
|
|
152
|
+
version = "0.22.5"
|
|
199
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
-
checksum = "
|
|
154
|
+
checksum = "94845622d88ae274d2729fcefc850e63d7a3ddff5e3ce11bd88486db9f1d357d"
|
|
201
155
|
dependencies = [
|
|
202
156
|
"libc",
|
|
203
157
|
"pyo3-build-config",
|
|
@@ -205,9 +159,9 @@ dependencies = [
|
|
|
205
159
|
|
|
206
160
|
[[package]]
|
|
207
161
|
name = "pyo3-macros"
|
|
208
|
-
version = "0.
|
|
162
|
+
version = "0.22.5"
|
|
209
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "
|
|
164
|
+
checksum = "e655aad15e09b94ffdb3ce3d217acf652e26bbc37697ef012f5e5e348c716e5e"
|
|
211
165
|
dependencies = [
|
|
212
166
|
"proc-macro2",
|
|
213
167
|
"pyo3-macros-backend",
|
|
@@ -217,18 +171,20 @@ dependencies = [
|
|
|
217
171
|
|
|
218
172
|
[[package]]
|
|
219
173
|
name = "pyo3-macros-backend"
|
|
220
|
-
version = "0.
|
|
174
|
+
version = "0.22.5"
|
|
221
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
176
|
+
checksum = "ae1e3f09eecd94618f60a455a23def79f79eba4dc561a97324bf9ac8c6df30ce"
|
|
223
177
|
dependencies = [
|
|
178
|
+
"heck",
|
|
224
179
|
"proc-macro2",
|
|
180
|
+
"pyo3-build-config",
|
|
225
181
|
"quote",
|
|
226
182
|
"syn",
|
|
227
183
|
]
|
|
228
184
|
|
|
229
185
|
[[package]]
|
|
230
186
|
name = "pywinpty"
|
|
231
|
-
version = "2.0.
|
|
187
|
+
version = "2.0.14"
|
|
232
188
|
dependencies = [
|
|
233
189
|
"pyo3",
|
|
234
190
|
"winpty-rs",
|
|
@@ -236,52 +192,31 @@ dependencies = [
|
|
|
236
192
|
|
|
237
193
|
[[package]]
|
|
238
194
|
name = "quote"
|
|
239
|
-
version = "1.0.
|
|
195
|
+
version = "1.0.37"
|
|
240
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
-
checksum = "
|
|
197
|
+
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
|
|
242
198
|
dependencies = [
|
|
243
199
|
"proc-macro2",
|
|
244
200
|
]
|
|
245
201
|
|
|
246
|
-
[[package]]
|
|
247
|
-
name = "redox_syscall"
|
|
248
|
-
version = "0.3.5"
|
|
249
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
251
|
-
dependencies = [
|
|
252
|
-
"bitflags 1.3.2",
|
|
253
|
-
]
|
|
254
|
-
|
|
255
202
|
[[package]]
|
|
256
203
|
name = "rustix"
|
|
257
|
-
version = "0.38.
|
|
204
|
+
version = "0.38.37"
|
|
258
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
-
checksum = "
|
|
206
|
+
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
|
|
260
207
|
dependencies = [
|
|
261
|
-
"bitflags
|
|
208
|
+
"bitflags",
|
|
262
209
|
"errno",
|
|
263
210
|
"libc",
|
|
264
211
|
"linux-raw-sys",
|
|
265
212
|
"windows-sys",
|
|
266
213
|
]
|
|
267
214
|
|
|
268
|
-
[[package]]
|
|
269
|
-
name = "scopeguard"
|
|
270
|
-
version = "1.2.0"
|
|
271
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
273
|
-
|
|
274
|
-
[[package]]
|
|
275
|
-
name = "smallvec"
|
|
276
|
-
version = "1.11.1"
|
|
277
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
-
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
|
|
279
|
-
|
|
280
215
|
[[package]]
|
|
281
216
|
name = "syn"
|
|
282
|
-
version = "
|
|
217
|
+
version = "2.0.79"
|
|
283
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
-
checksum = "
|
|
219
|
+
checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590"
|
|
285
220
|
dependencies = [
|
|
286
221
|
"proc-macro2",
|
|
287
222
|
"quote",
|
|
@@ -290,39 +225,39 @@ dependencies = [
|
|
|
290
225
|
|
|
291
226
|
[[package]]
|
|
292
227
|
name = "target-lexicon"
|
|
293
|
-
version = "0.12.
|
|
228
|
+
version = "0.12.16"
|
|
294
229
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
-
checksum = "
|
|
230
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
296
231
|
|
|
297
232
|
[[package]]
|
|
298
233
|
name = "unicode-ident"
|
|
299
|
-
version = "1.0.
|
|
234
|
+
version = "1.0.13"
|
|
300
235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "
|
|
236
|
+
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
|
|
302
237
|
|
|
303
238
|
[[package]]
|
|
304
239
|
name = "unindent"
|
|
305
|
-
version = "0.
|
|
240
|
+
version = "0.2.3"
|
|
306
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
-
checksum = "
|
|
242
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
308
243
|
|
|
309
244
|
[[package]]
|
|
310
245
|
name = "which"
|
|
311
|
-
version = "
|
|
246
|
+
version = "6.0.3"
|
|
312
247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "
|
|
248
|
+
checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
|
|
314
249
|
dependencies = [
|
|
315
250
|
"either",
|
|
316
251
|
"home",
|
|
317
|
-
"once_cell",
|
|
318
252
|
"rustix",
|
|
253
|
+
"winsafe",
|
|
319
254
|
]
|
|
320
255
|
|
|
321
256
|
[[package]]
|
|
322
257
|
name = "windows"
|
|
323
|
-
version = "0.
|
|
258
|
+
version = "0.58.0"
|
|
324
259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
260
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
326
261
|
dependencies = [
|
|
327
262
|
"windows-core",
|
|
328
263
|
"windows-targets",
|
|
@@ -330,31 +265,77 @@ dependencies = [
|
|
|
330
265
|
|
|
331
266
|
[[package]]
|
|
332
267
|
name = "windows-core"
|
|
333
|
-
version = "0.
|
|
268
|
+
version = "0.58.0"
|
|
334
269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
-
checksum = "
|
|
270
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
336
271
|
dependencies = [
|
|
272
|
+
"windows-implement",
|
|
273
|
+
"windows-interface",
|
|
274
|
+
"windows-result",
|
|
275
|
+
"windows-strings",
|
|
276
|
+
"windows-targets",
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
[[package]]
|
|
280
|
+
name = "windows-implement"
|
|
281
|
+
version = "0.58.0"
|
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
283
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
284
|
+
dependencies = [
|
|
285
|
+
"proc-macro2",
|
|
286
|
+
"quote",
|
|
287
|
+
"syn",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "windows-interface"
|
|
292
|
+
version = "0.58.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
295
|
+
dependencies = [
|
|
296
|
+
"proc-macro2",
|
|
297
|
+
"quote",
|
|
298
|
+
"syn",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "windows-result"
|
|
303
|
+
version = "0.2.0"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"windows-targets",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "windows-strings"
|
|
312
|
+
version = "0.1.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"windows-result",
|
|
337
317
|
"windows-targets",
|
|
338
318
|
]
|
|
339
319
|
|
|
340
320
|
[[package]]
|
|
341
321
|
name = "windows-sys"
|
|
342
|
-
version = "0.
|
|
322
|
+
version = "0.52.0"
|
|
343
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
324
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
345
325
|
dependencies = [
|
|
346
326
|
"windows-targets",
|
|
347
327
|
]
|
|
348
328
|
|
|
349
329
|
[[package]]
|
|
350
330
|
name = "windows-targets"
|
|
351
|
-
version = "0.
|
|
331
|
+
version = "0.52.6"
|
|
352
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
-
checksum = "
|
|
333
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
354
334
|
dependencies = [
|
|
355
335
|
"windows_aarch64_gnullvm",
|
|
356
336
|
"windows_aarch64_msvc",
|
|
357
337
|
"windows_i686_gnu",
|
|
338
|
+
"windows_i686_gnullvm",
|
|
358
339
|
"windows_i686_msvc",
|
|
359
340
|
"windows_x86_64_gnu",
|
|
360
341
|
"windows_x86_64_gnullvm",
|
|
@@ -363,55 +344,67 @@ dependencies = [
|
|
|
363
344
|
|
|
364
345
|
[[package]]
|
|
365
346
|
name = "windows_aarch64_gnullvm"
|
|
366
|
-
version = "0.
|
|
347
|
+
version = "0.52.6"
|
|
367
348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
-
checksum = "
|
|
349
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
369
350
|
|
|
370
351
|
[[package]]
|
|
371
352
|
name = "windows_aarch64_msvc"
|
|
372
|
-
version = "0.
|
|
353
|
+
version = "0.52.6"
|
|
373
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
-
checksum = "
|
|
355
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
375
356
|
|
|
376
357
|
[[package]]
|
|
377
358
|
name = "windows_i686_gnu"
|
|
378
|
-
version = "0.
|
|
359
|
+
version = "0.52.6"
|
|
379
360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
-
checksum = "
|
|
361
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
362
|
+
|
|
363
|
+
[[package]]
|
|
364
|
+
name = "windows_i686_gnullvm"
|
|
365
|
+
version = "0.52.6"
|
|
366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
381
368
|
|
|
382
369
|
[[package]]
|
|
383
370
|
name = "windows_i686_msvc"
|
|
384
|
-
version = "0.
|
|
371
|
+
version = "0.52.6"
|
|
385
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
-
checksum = "
|
|
373
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
387
374
|
|
|
388
375
|
[[package]]
|
|
389
376
|
name = "windows_x86_64_gnu"
|
|
390
|
-
version = "0.
|
|
377
|
+
version = "0.52.6"
|
|
391
378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
379
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
393
380
|
|
|
394
381
|
[[package]]
|
|
395
382
|
name = "windows_x86_64_gnullvm"
|
|
396
|
-
version = "0.
|
|
383
|
+
version = "0.52.6"
|
|
397
384
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
-
checksum = "
|
|
385
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
399
386
|
|
|
400
387
|
[[package]]
|
|
401
388
|
name = "windows_x86_64_msvc"
|
|
402
|
-
version = "0.
|
|
389
|
+
version = "0.52.6"
|
|
403
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
-
checksum = "
|
|
391
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
405
392
|
|
|
406
393
|
[[package]]
|
|
407
394
|
name = "winpty-rs"
|
|
408
|
-
version = "0.
|
|
395
|
+
version = "0.4.0"
|
|
409
396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
397
|
+
checksum = "13fce64972ee42703b2be1573fa22ddd0f92cdffe029e5f483e22d498252a748"
|
|
411
398
|
dependencies = [
|
|
412
|
-
"bitflags
|
|
399
|
+
"bitflags",
|
|
413
400
|
"enum-primitive-derive",
|
|
414
401
|
"num-traits",
|
|
415
402
|
"which",
|
|
416
403
|
"windows",
|
|
417
404
|
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "winsafe"
|
|
408
|
+
version = "0.0.19"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "pywinpty"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.14"
|
|
4
4
|
authors = ["Edgar Andrés Margffoy Tuay <andfoy@gmail.com>"]
|
|
5
5
|
description = "Pseudo terminal support for Windows from Python."
|
|
6
6
|
repository = "https://github.com/spyder-ide/pywinpty"
|
|
@@ -14,10 +14,10 @@ name = "winpty"
|
|
|
14
14
|
crate-type = ["cdylib"]
|
|
15
15
|
|
|
16
16
|
[dependencies]
|
|
17
|
-
winpty-rs = "0.
|
|
17
|
+
winpty-rs = "0.4"
|
|
18
18
|
|
|
19
19
|
[dependencies.pyo3]
|
|
20
|
-
version = "0.
|
|
20
|
+
version = "0.22.3"
|
|
21
21
|
features = ["extension-module"]
|
|
22
22
|
|
|
23
23
|
[package.metadata.docs.rs]
|
|
@@ -366,9 +366,9 @@ impl PyPTY {
|
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
#[pymodule]
|
|
369
|
-
fn winpty(py: Python
|
|
369
|
+
fn winpty(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
|
|
370
370
|
m.add("__version__", VERSION)?;
|
|
371
|
-
m.add("WinptyError", py.
|
|
371
|
+
m.add("WinptyError", py.get_type_bound::<WinptyError>())?;
|
|
372
372
|
m.add_class::<PyPTY>()?;
|
|
373
373
|
Ok(())
|
|
374
374
|
}
|
|
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
|