pywinpty 2.0.14__tar.gz → 2.0.15__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.14 → pywinpty-2.0.15}/.github/workflows/windows_build.yml +18 -2
- {pywinpty-2.0.14 → pywinpty-2.0.15}/.github/workflows/windows_release.yml +18 -2
- {pywinpty-2.0.14 → pywinpty-2.0.15}/CHANGELOG.md +11 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/Cargo.lock +193 -68
- {pywinpty-2.0.14 → pywinpty-2.0.15}/Cargo.toml +2 -2
- {pywinpty-2.0.14 → pywinpty-2.0.15}/PKG-INFO +3 -3
- {pywinpty-2.0.14 → pywinpty-2.0.15}/pyproject.toml +2 -1
- {pywinpty-2.0.14 → pywinpty-2.0.15}/src/lib.rs +2 -2
- {pywinpty-2.0.14 → pywinpty-2.0.15}/.github/dependabot.yml +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/.github/scripts/copy_winpty.sh +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/.github/workflows/linux_sdist.yml +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/.gitignore +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/LICENSE.txt +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/MANIFEST.in +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/README.md +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/RELEASE.md +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/runtests.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/winpty/__init__.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/winpty/enums.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/winpty/ptyprocess.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/winpty/tests/__init__.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/winpty/tests/test_pty.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/winpty/tests/test_ptyprocess.py +0 -0
- {pywinpty-2.0.14 → pywinpty-2.0.15}/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.9", "3.10", "3.11", "3.12", "3.13"]
|
|
23
|
+
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
|
|
24
24
|
steps:
|
|
25
25
|
- name: Checkout branch
|
|
26
26
|
uses: actions/checkout@v4
|
|
@@ -31,13 +31,29 @@ jobs:
|
|
|
31
31
|
target: x86_64-pc-windows-msvc
|
|
32
32
|
override: true
|
|
33
33
|
components: rustfmt, clippy
|
|
34
|
+
- name: Remove free-threaded suffix from version
|
|
35
|
+
env:
|
|
36
|
+
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
|
|
37
|
+
shell: bash -l {0}
|
|
38
|
+
run: |
|
|
39
|
+
PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION
|
|
40
|
+
if [[ $PYTHON_VERSION = *t ]]; then
|
|
41
|
+
PYTHON_VERSION_NONSUFFIX=${PYTHON_VERSION//t}
|
|
42
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
43
|
+
fi
|
|
44
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
34
45
|
- name: Install miniconda
|
|
35
46
|
uses: conda-incubator/setup-miniconda@v3
|
|
36
47
|
with:
|
|
37
48
|
auto-update-conda: true
|
|
38
49
|
activate-environment: test
|
|
39
50
|
channels: conda-forge,defaults
|
|
40
|
-
python-version: ${{
|
|
51
|
+
python-version: ${{ env.PYTHON_VERSION_NONSUFFIX }}
|
|
52
|
+
- name: Reinstall free-threaded Python
|
|
53
|
+
if: ${{ endsWith(matrix.PYTHON_VERSION, 't') }}
|
|
54
|
+
shell: bash -l {0}
|
|
55
|
+
run: |
|
|
56
|
+
conda install --override-channels -c conda-forge python-freethreading
|
|
41
57
|
- name: Conda env info
|
|
42
58
|
shell: bash -l {0}
|
|
43
59
|
run: conda env list
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
strategy:
|
|
16
16
|
fail-fast: false
|
|
17
17
|
matrix:
|
|
18
|
-
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
|
18
|
+
PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"]
|
|
19
19
|
steps:
|
|
20
20
|
- name: Checkout branch
|
|
21
21
|
uses: actions/checkout@v4
|
|
@@ -26,13 +26,29 @@ jobs:
|
|
|
26
26
|
target: x86_64-pc-windows-msvc
|
|
27
27
|
override: true
|
|
28
28
|
components: rustfmt, clippy
|
|
29
|
+
- name: Remove free-threaded suffix from version
|
|
30
|
+
env:
|
|
31
|
+
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
|
|
32
|
+
shell: bash -l {0}
|
|
33
|
+
run: |
|
|
34
|
+
PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION
|
|
35
|
+
if [[ $PYTHON_VERSION = *t ]]; then
|
|
36
|
+
PYTHON_VERSION_NONSUFFIX=${PYTHON_VERSION//t}
|
|
37
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
38
|
+
fi
|
|
39
|
+
echo "PYTHON_VERSION_NONSUFFIX=$PYTHON_VERSION_NONSUFFIX" >> $GITHUB_ENV
|
|
29
40
|
- name: Install miniconda
|
|
30
41
|
uses: conda-incubator/setup-miniconda@v3
|
|
31
42
|
with:
|
|
32
43
|
auto-update-conda: true
|
|
33
44
|
activate-environment: test
|
|
34
45
|
channels: conda-forge,defaults
|
|
35
|
-
python-version: ${{
|
|
46
|
+
python-version: ${{ env.PYTHON_VERSION_NONSUFFIX }}
|
|
47
|
+
- name: Reinstall free-threaded Python
|
|
48
|
+
if: ${{ endsWith(matrix.PYTHON_VERSION, 't') }}
|
|
49
|
+
shell: bash -l {0}
|
|
50
|
+
run: |
|
|
51
|
+
conda install --override-channels -c conda-forge python-freethreading
|
|
36
52
|
- name: Conda env info
|
|
37
53
|
shell: bash -l {0}
|
|
38
54
|
run: conda env list
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## Version 2.0.15 (2025/02/03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Pull Requests Merged
|
|
5
|
+
|
|
6
|
+
* [PR 492](https://github.com/andfoy/pywinpty/pull/492) - Add version to pyproject.toml, by [@finnagin](https://github.com/finnagin)
|
|
7
|
+
* [PR 488](https://github.com/andfoy/pywinpty/pull/488) - Bump pyo3 from 0.22.5 to 0.23.4, by [@dependabot[bot]](https://github.com/apps/dependabot) ([491](https://github.com/andfoy/pywinpty/issues/491), [](https://github.com/<code>/issues/))
|
|
8
|
+
|
|
9
|
+
In this release 2 pull requests were closed.
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## Version 2.0.14 (2024/10/17)
|
|
2
13
|
|
|
3
14
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "autocfg"
|
|
@@ -10,9 +10,9 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "bitflags"
|
|
13
|
-
version = "2.
|
|
13
|
+
version = "2.8.0"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
|
16
16
|
|
|
17
17
|
[[package]]
|
|
18
18
|
name = "cfg-if"
|
|
@@ -37,11 +37,17 @@ dependencies = [
|
|
|
37
37
|
"syn",
|
|
38
38
|
]
|
|
39
39
|
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "env_home"
|
|
42
|
+
version = "0.1.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "c7f84e12ccf0a7ddc17a6c41c93326024c42920d7ee630d04950e6926645c0fe"
|
|
45
|
+
|
|
40
46
|
[[package]]
|
|
41
47
|
name = "errno"
|
|
42
|
-
version = "0.3.
|
|
48
|
+
version = "0.3.10"
|
|
43
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
-
checksum = "
|
|
50
|
+
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
|
45
51
|
dependencies = [
|
|
46
52
|
"libc",
|
|
47
53
|
"windows-sys",
|
|
@@ -53,15 +59,6 @@ version = "0.5.0"
|
|
|
53
59
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
60
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
55
61
|
|
|
56
|
-
[[package]]
|
|
57
|
-
name = "home"
|
|
58
|
-
version = "0.5.9"
|
|
59
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
-
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
|
|
61
|
-
dependencies = [
|
|
62
|
-
"windows-sys",
|
|
63
|
-
]
|
|
64
|
-
|
|
65
62
|
[[package]]
|
|
66
63
|
name = "indoc"
|
|
67
64
|
version = "2.0.5"
|
|
@@ -70,15 +67,15 @@ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
|
70
67
|
|
|
71
68
|
[[package]]
|
|
72
69
|
name = "libc"
|
|
73
|
-
version = "0.2.
|
|
70
|
+
version = "0.2.169"
|
|
74
71
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
-
checksum = "
|
|
72
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
|
76
73
|
|
|
77
74
|
[[package]]
|
|
78
75
|
name = "linux-raw-sys"
|
|
79
|
-
version = "0.4.
|
|
76
|
+
version = "0.4.15"
|
|
80
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
-
checksum = "
|
|
78
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
82
79
|
|
|
83
80
|
[[package]]
|
|
84
81
|
name = "memoffset"
|
|
@@ -106,24 +103,24 @@ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
|
|
106
103
|
|
|
107
104
|
[[package]]
|
|
108
105
|
name = "portable-atomic"
|
|
109
|
-
version = "1.
|
|
106
|
+
version = "1.10.0"
|
|
110
107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
-
checksum = "
|
|
108
|
+
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
|
|
112
109
|
|
|
113
110
|
[[package]]
|
|
114
111
|
name = "proc-macro2"
|
|
115
|
-
version = "1.0.
|
|
112
|
+
version = "1.0.93"
|
|
116
113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
-
checksum = "
|
|
114
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
|
118
115
|
dependencies = [
|
|
119
116
|
"unicode-ident",
|
|
120
117
|
]
|
|
121
118
|
|
|
122
119
|
[[package]]
|
|
123
120
|
name = "pyo3"
|
|
124
|
-
version = "0.
|
|
121
|
+
version = "0.23.4"
|
|
125
122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
-
checksum = "
|
|
123
|
+
checksum = "57fe09249128b3173d092de9523eaa75136bf7ba85e0d69eca241c7939c933cc"
|
|
127
124
|
dependencies = [
|
|
128
125
|
"cfg-if",
|
|
129
126
|
"indoc",
|
|
@@ -139,9 +136,9 @@ dependencies = [
|
|
|
139
136
|
|
|
140
137
|
[[package]]
|
|
141
138
|
name = "pyo3-build-config"
|
|
142
|
-
version = "0.
|
|
139
|
+
version = "0.23.4"
|
|
143
140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
-
checksum = "
|
|
141
|
+
checksum = "1cd3927b5a78757a0d71aa9dff669f903b1eb64b54142a9bd9f757f8fde65fd7"
|
|
145
142
|
dependencies = [
|
|
146
143
|
"once_cell",
|
|
147
144
|
"target-lexicon",
|
|
@@ -149,9 +146,9 @@ dependencies = [
|
|
|
149
146
|
|
|
150
147
|
[[package]]
|
|
151
148
|
name = "pyo3-ffi"
|
|
152
|
-
version = "0.
|
|
149
|
+
version = "0.23.4"
|
|
153
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
-
checksum = "
|
|
151
|
+
checksum = "dab6bb2102bd8f991e7749f130a70d05dd557613e39ed2deeee8e9ca0c4d548d"
|
|
155
152
|
dependencies = [
|
|
156
153
|
"libc",
|
|
157
154
|
"pyo3-build-config",
|
|
@@ -159,9 +156,9 @@ dependencies = [
|
|
|
159
156
|
|
|
160
157
|
[[package]]
|
|
161
158
|
name = "pyo3-macros"
|
|
162
|
-
version = "0.
|
|
159
|
+
version = "0.23.4"
|
|
163
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
-
checksum = "
|
|
161
|
+
checksum = "91871864b353fd5ffcb3f91f2f703a22a9797c91b9ab497b1acac7b07ae509c7"
|
|
165
162
|
dependencies = [
|
|
166
163
|
"proc-macro2",
|
|
167
164
|
"pyo3-macros-backend",
|
|
@@ -171,9 +168,9 @@ dependencies = [
|
|
|
171
168
|
|
|
172
169
|
[[package]]
|
|
173
170
|
name = "pyo3-macros-backend"
|
|
174
|
-
version = "0.
|
|
171
|
+
version = "0.23.4"
|
|
175
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
173
|
+
checksum = "43abc3b80bc20f3facd86cd3c60beed58c3e2aa26213f3cda368de39c60a27e4"
|
|
177
174
|
dependencies = [
|
|
178
175
|
"heck",
|
|
179
176
|
"proc-macro2",
|
|
@@ -184,7 +181,7 @@ dependencies = [
|
|
|
184
181
|
|
|
185
182
|
[[package]]
|
|
186
183
|
name = "pywinpty"
|
|
187
|
-
version = "2.0.
|
|
184
|
+
version = "2.0.15"
|
|
188
185
|
dependencies = [
|
|
189
186
|
"pyo3",
|
|
190
187
|
"winpty-rs",
|
|
@@ -192,18 +189,18 @@ dependencies = [
|
|
|
192
189
|
|
|
193
190
|
[[package]]
|
|
194
191
|
name = "quote"
|
|
195
|
-
version = "1.0.
|
|
192
|
+
version = "1.0.38"
|
|
196
193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
194
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
|
198
195
|
dependencies = [
|
|
199
196
|
"proc-macro2",
|
|
200
197
|
]
|
|
201
198
|
|
|
202
199
|
[[package]]
|
|
203
200
|
name = "rustix"
|
|
204
|
-
version = "0.38.
|
|
201
|
+
version = "0.38.44"
|
|
205
202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "
|
|
203
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
207
204
|
dependencies = [
|
|
208
205
|
"bitflags",
|
|
209
206
|
"errno",
|
|
@@ -214,9 +211,9 @@ dependencies = [
|
|
|
214
211
|
|
|
215
212
|
[[package]]
|
|
216
213
|
name = "syn"
|
|
217
|
-
version = "2.0.
|
|
214
|
+
version = "2.0.98"
|
|
218
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
216
|
+
checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
|
|
220
217
|
dependencies = [
|
|
221
218
|
"proc-macro2",
|
|
222
219
|
"quote",
|
|
@@ -231,9 +228,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
231
228
|
|
|
232
229
|
[[package]]
|
|
233
230
|
name = "unicode-ident"
|
|
234
|
-
version = "1.0.
|
|
231
|
+
version = "1.0.16"
|
|
235
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
-
checksum = "
|
|
233
|
+
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
|
237
234
|
|
|
238
235
|
[[package]]
|
|
239
236
|
name = "unindent"
|
|
@@ -243,12 +240,12 @@ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
|
243
240
|
|
|
244
241
|
[[package]]
|
|
245
242
|
name = "which"
|
|
246
|
-
version = "
|
|
243
|
+
version = "7.0.1"
|
|
247
244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
-
checksum = "
|
|
245
|
+
checksum = "fb4a9e33648339dc1642b0e36e21b3385e6148e289226f657c809dee59df5028"
|
|
249
246
|
dependencies = [
|
|
250
247
|
"either",
|
|
251
|
-
"
|
|
248
|
+
"env_home",
|
|
252
249
|
"rustix",
|
|
253
250
|
"winsafe",
|
|
254
251
|
]
|
|
@@ -259,8 +256,18 @@ version = "0.58.0"
|
|
|
259
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
257
|
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
261
258
|
dependencies = [
|
|
262
|
-
"windows-core",
|
|
263
|
-
"windows-targets",
|
|
259
|
+
"windows-core 0.58.0",
|
|
260
|
+
"windows-targets 0.52.6",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "windows"
|
|
265
|
+
version = "0.59.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "7f919aee0a93304be7f62e8e5027811bbba96bcb1de84d6618be56e43f8a32a1"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"windows-core 0.59.0",
|
|
270
|
+
"windows-targets 0.53.0",
|
|
264
271
|
]
|
|
265
272
|
|
|
266
273
|
[[package]]
|
|
@@ -269,11 +276,24 @@ version = "0.58.0"
|
|
|
269
276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
277
|
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
271
278
|
dependencies = [
|
|
272
|
-
"windows-implement",
|
|
273
|
-
"windows-interface",
|
|
274
|
-
"windows-result",
|
|
275
|
-
"windows-strings",
|
|
276
|
-
"windows-targets",
|
|
279
|
+
"windows-implement 0.58.0",
|
|
280
|
+
"windows-interface 0.58.0",
|
|
281
|
+
"windows-result 0.2.0",
|
|
282
|
+
"windows-strings 0.1.0",
|
|
283
|
+
"windows-targets 0.52.6",
|
|
284
|
+
]
|
|
285
|
+
|
|
286
|
+
[[package]]
|
|
287
|
+
name = "windows-core"
|
|
288
|
+
version = "0.59.0"
|
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
+
checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
|
|
291
|
+
dependencies = [
|
|
292
|
+
"windows-implement 0.59.0",
|
|
293
|
+
"windows-interface 0.59.0",
|
|
294
|
+
"windows-result 0.3.0",
|
|
295
|
+
"windows-strings 0.3.0",
|
|
296
|
+
"windows-targets 0.53.0",
|
|
277
297
|
]
|
|
278
298
|
|
|
279
299
|
[[package]]
|
|
@@ -287,6 +307,17 @@ dependencies = [
|
|
|
287
307
|
"syn",
|
|
288
308
|
]
|
|
289
309
|
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "windows-implement"
|
|
312
|
+
version = "0.59.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"proc-macro2",
|
|
317
|
+
"quote",
|
|
318
|
+
"syn",
|
|
319
|
+
]
|
|
320
|
+
|
|
290
321
|
[[package]]
|
|
291
322
|
name = "windows-interface"
|
|
292
323
|
version = "0.58.0"
|
|
@@ -298,13 +329,33 @@ dependencies = [
|
|
|
298
329
|
"syn",
|
|
299
330
|
]
|
|
300
331
|
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "windows-interface"
|
|
334
|
+
version = "0.59.0"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "cb26fd936d991781ea39e87c3a27285081e3c0da5ca0fcbc02d368cc6f52ff01"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"proc-macro2",
|
|
339
|
+
"quote",
|
|
340
|
+
"syn",
|
|
341
|
+
]
|
|
342
|
+
|
|
301
343
|
[[package]]
|
|
302
344
|
name = "windows-result"
|
|
303
345
|
version = "0.2.0"
|
|
304
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
347
|
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
306
348
|
dependencies = [
|
|
307
|
-
"windows-targets",
|
|
349
|
+
"windows-targets 0.52.6",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "windows-result"
|
|
354
|
+
version = "0.3.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "d08106ce80268c4067c0571ca55a9b4e9516518eaa1a1fe9b37ca403ae1d1a34"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"windows-targets 0.53.0",
|
|
308
359
|
]
|
|
309
360
|
|
|
310
361
|
[[package]]
|
|
@@ -313,17 +364,26 @@ version = "0.1.0"
|
|
|
313
364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
365
|
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
315
366
|
dependencies = [
|
|
316
|
-
"windows-result",
|
|
317
|
-
"windows-targets",
|
|
367
|
+
"windows-result 0.2.0",
|
|
368
|
+
"windows-targets 0.52.6",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "windows-strings"
|
|
373
|
+
version = "0.3.0"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "b888f919960b42ea4e11c2f408fadb55f78a9f236d5eef084103c8ce52893491"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"windows-targets 0.53.0",
|
|
318
378
|
]
|
|
319
379
|
|
|
320
380
|
[[package]]
|
|
321
381
|
name = "windows-sys"
|
|
322
|
-
version = "0.
|
|
382
|
+
version = "0.59.0"
|
|
323
383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
-
checksum = "
|
|
384
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
325
385
|
dependencies = [
|
|
326
|
-
"windows-targets",
|
|
386
|
+
"windows-targets 0.52.6",
|
|
327
387
|
]
|
|
328
388
|
|
|
329
389
|
[[package]]
|
|
@@ -332,14 +392,30 @@ version = "0.52.6"
|
|
|
332
392
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
393
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
334
394
|
dependencies = [
|
|
335
|
-
"windows_aarch64_gnullvm",
|
|
336
|
-
"windows_aarch64_msvc",
|
|
337
|
-
"windows_i686_gnu",
|
|
338
|
-
"windows_i686_gnullvm",
|
|
339
|
-
"windows_i686_msvc",
|
|
340
|
-
"windows_x86_64_gnu",
|
|
341
|
-
"windows_x86_64_gnullvm",
|
|
342
|
-
"windows_x86_64_msvc",
|
|
395
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
396
|
+
"windows_aarch64_msvc 0.52.6",
|
|
397
|
+
"windows_i686_gnu 0.52.6",
|
|
398
|
+
"windows_i686_gnullvm 0.52.6",
|
|
399
|
+
"windows_i686_msvc 0.52.6",
|
|
400
|
+
"windows_x86_64_gnu 0.52.6",
|
|
401
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
402
|
+
"windows_x86_64_msvc 0.52.6",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "windows-targets"
|
|
407
|
+
version = "0.53.0"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
412
|
+
"windows_aarch64_msvc 0.53.0",
|
|
413
|
+
"windows_i686_gnu 0.53.0",
|
|
414
|
+
"windows_i686_gnullvm 0.53.0",
|
|
415
|
+
"windows_i686_msvc 0.53.0",
|
|
416
|
+
"windows_x86_64_gnu 0.53.0",
|
|
417
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
418
|
+
"windows_x86_64_msvc 0.53.0",
|
|
343
419
|
]
|
|
344
420
|
|
|
345
421
|
[[package]]
|
|
@@ -348,59 +424,108 @@ version = "0.52.6"
|
|
|
348
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
425
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
350
426
|
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "windows_aarch64_gnullvm"
|
|
429
|
+
version = "0.53.0"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
432
|
+
|
|
351
433
|
[[package]]
|
|
352
434
|
name = "windows_aarch64_msvc"
|
|
353
435
|
version = "0.52.6"
|
|
354
436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
437
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
356
438
|
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "windows_aarch64_msvc"
|
|
441
|
+
version = "0.53.0"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
444
|
+
|
|
357
445
|
[[package]]
|
|
358
446
|
name = "windows_i686_gnu"
|
|
359
447
|
version = "0.52.6"
|
|
360
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
361
449
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
362
450
|
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "windows_i686_gnu"
|
|
453
|
+
version = "0.53.0"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
456
|
+
|
|
363
457
|
[[package]]
|
|
364
458
|
name = "windows_i686_gnullvm"
|
|
365
459
|
version = "0.52.6"
|
|
366
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
461
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
368
462
|
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "windows_i686_gnullvm"
|
|
465
|
+
version = "0.53.0"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
468
|
+
|
|
369
469
|
[[package]]
|
|
370
470
|
name = "windows_i686_msvc"
|
|
371
471
|
version = "0.52.6"
|
|
372
472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
473
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
374
474
|
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "windows_i686_msvc"
|
|
477
|
+
version = "0.53.0"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
480
|
+
|
|
375
481
|
[[package]]
|
|
376
482
|
name = "windows_x86_64_gnu"
|
|
377
483
|
version = "0.52.6"
|
|
378
484
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
485
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
380
486
|
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "windows_x86_64_gnu"
|
|
489
|
+
version = "0.53.0"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
492
|
+
|
|
381
493
|
[[package]]
|
|
382
494
|
name = "windows_x86_64_gnullvm"
|
|
383
495
|
version = "0.52.6"
|
|
384
496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
385
497
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
386
498
|
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "windows_x86_64_gnullvm"
|
|
501
|
+
version = "0.53.0"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
504
|
+
|
|
387
505
|
[[package]]
|
|
388
506
|
name = "windows_x86_64_msvc"
|
|
389
507
|
version = "0.52.6"
|
|
390
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
509
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
392
510
|
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "windows_x86_64_msvc"
|
|
513
|
+
version = "0.53.0"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
516
|
+
|
|
393
517
|
[[package]]
|
|
394
518
|
name = "winpty-rs"
|
|
395
|
-
version = "0.4.
|
|
519
|
+
version = "0.4.1"
|
|
396
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
-
checksum = "
|
|
521
|
+
checksum = "067bd0835c7d94e21f436c6c735a0725d63276503045a65a0e43856746b1235d"
|
|
398
522
|
dependencies = [
|
|
399
523
|
"bitflags",
|
|
400
524
|
"enum-primitive-derive",
|
|
401
525
|
"num-traits",
|
|
402
526
|
"which",
|
|
403
|
-
"windows",
|
|
527
|
+
"windows 0.58.0",
|
|
528
|
+
"windows 0.59.0",
|
|
404
529
|
]
|
|
405
530
|
|
|
406
531
|
[[package]]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "pywinpty"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.15"
|
|
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"
|
|
@@ -17,7 +17,7 @@ crate-type = ["cdylib"]
|
|
|
17
17
|
winpty-rs = "0.4"
|
|
18
18
|
|
|
19
19
|
[dependencies.pyo3]
|
|
20
|
-
version = "0.
|
|
20
|
+
version = "0.23.4"
|
|
21
21
|
features = ["extension-module"]
|
|
22
22
|
|
|
23
23
|
[package.metadata.docs.rs]
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pywinpty
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.15
|
|
4
4
|
License-File: LICENSE.txt
|
|
5
5
|
Summary: Pseudo terminal support for Windows from Python.
|
|
6
6
|
Keywords: pty,pseudo-terminal,conpty,windows,winpty
|
|
7
7
|
Author: Edgar Andrés Margffoy Tuay <andfoy@gmail.com>
|
|
8
8
|
Author-email: Edgar Andrés Margffoy Tuay <andfoy@gmail.com>
|
|
9
9
|
License: MIT
|
|
10
|
-
Requires-Python: >=3.
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
11
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
12
12
|
Project-URL: Source Code, https://github.com/spyder-ide/pywinpty
|
|
13
13
|
|
|
@@ -365,10 +365,10 @@ impl PyPTY {
|
|
|
365
365
|
}
|
|
366
366
|
}
|
|
367
367
|
|
|
368
|
-
#[pymodule]
|
|
368
|
+
#[pymodule(gil_used = false)]
|
|
369
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::<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
|
|
File without changes
|