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.
Files changed (24) hide show
  1. {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/workflows/linux_sdist.yml +1 -1
  2. {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/workflows/windows_build.yml +3 -3
  3. {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/workflows/windows_release.yml +2 -2
  4. {pywinpty-2.0.12 → pywinpty-2.0.14}/.gitignore +4 -0
  5. {pywinpty-2.0.12 → pywinpty-2.0.14}/CHANGELOG.md +38 -0
  6. {pywinpty-2.0.12 → pywinpty-2.0.14}/Cargo.lock +146 -153
  7. {pywinpty-2.0.12 → pywinpty-2.0.14}/Cargo.toml +3 -3
  8. {pywinpty-2.0.12 → pywinpty-2.0.14}/PKG-INFO +2 -2
  9. {pywinpty-2.0.12 → pywinpty-2.0.14}/src/lib.rs +2 -2
  10. {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/dependabot.yml +0 -0
  11. {pywinpty-2.0.12 → pywinpty-2.0.14}/.github/scripts/copy_winpty.sh +0 -0
  12. {pywinpty-2.0.12 → pywinpty-2.0.14}/LICENSE.txt +0 -0
  13. {pywinpty-2.0.12 → pywinpty-2.0.14}/MANIFEST.in +0 -0
  14. {pywinpty-2.0.12 → pywinpty-2.0.14}/README.md +0 -0
  15. {pywinpty-2.0.12 → pywinpty-2.0.14}/RELEASE.md +0 -0
  16. {pywinpty-2.0.12 → pywinpty-2.0.14}/pyproject.toml +0 -0
  17. {pywinpty-2.0.12 → pywinpty-2.0.14}/runtests.py +0 -0
  18. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/__init__.py +0 -0
  19. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/enums.py +0 -0
  20. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/ptyprocess.py +0 -0
  21. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/tests/__init__.py +0 -0
  22. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/tests/test_pty.py +0 -0
  23. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/tests/test_ptyprocess.py +0 -0
  24. {pywinpty-2.0.12 → pywinpty-2.0.14}/winpty/winpty.pyi +0 -0
@@ -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@v2
30
+ uses: conda-incubator/setup-miniconda@v3
31
31
  with:
32
32
  auto-update-conda: true
33
33
  activate-environment: test
@@ -20,7 +20,7 @@ jobs:
20
20
  strategy:
21
21
  fail-fast: false
22
22
  matrix:
23
- PYTHON_VERSION: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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@v2
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 pytest-lazy-fixture flaky
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.8", "3.9", "3.10", "3.11", "3.12"]
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@v2
30
+ uses: conda-incubator/setup-miniconda@v3
31
31
  with:
32
32
  auto-update-conda: true
33
33
  activate-environment: test
@@ -45,6 +45,7 @@ nosetests.xml
45
45
  coverage.xml
46
46
  *.cover
47
47
  .hypothesis/
48
+ .pytest_cache/
48
49
 
49
50
  # Translations
50
51
  *.mo
@@ -118,3 +119,6 @@ cywinpty.c
118
119
  .vs/
119
120
  .vscode/
120
121
  CppProperties.json
122
+
123
+ # Debug VS files
124
+ *.sln
@@ -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.1.0"
7
+ version = "1.4.0"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
9
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
10
10
 
11
11
  [[package]]
12
12
  name = "bitflags"
13
- version = "1.3.2"
13
+ version = "2.6.0"
14
14
  source = "registry+https://github.com/rust-lang/crates.io-index"
15
- checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
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.9.0"
25
+ version = "1.13.0"
41
26
  source = "registry+https://github.com/rust-lang/crates.io-index"
42
- checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
27
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
43
28
 
44
29
  [[package]]
45
30
  name = "enum-primitive-derive"
46
- version = "0.2.2"
31
+ version = "0.3.0"
47
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "c375b9c5eadb68d0a6efee2999fef292f45854c3444c86f09d8ab086ba942b0e"
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.4"
42
+ version = "0.3.9"
58
43
  source = "registry+https://github.com/rust-lang/crates.io-index"
59
- checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480"
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 = "errno-dragonfly"
68
- version = "0.1.2"
51
+ name = "heck"
52
+ version = "0.5.0"
69
53
  source = "registry+https://github.com/rust-lang/crates.io-index"
70
- checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
71
- dependencies = [
72
- "cc",
73
- "libc",
74
- ]
54
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
75
55
 
76
56
  [[package]]
77
57
  name = "home"
78
- version = "0.5.5"
58
+ version = "0.5.9"
79
59
  source = "registry+https://github.com/rust-lang/crates.io-index"
80
- checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
60
+ checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
81
61
  dependencies = [
82
62
  "windows-sys",
83
63
  ]
84
64
 
85
65
  [[package]]
86
66
  name = "indoc"
87
- version = "1.0.9"
67
+ version = "2.0.5"
88
68
  source = "registry+https://github.com/rust-lang/crates.io-index"
89
- checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306"
69
+ checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
90
70
 
91
71
  [[package]]
92
72
  name = "libc"
93
- version = "0.2.149"
73
+ version = "0.2.160"
94
74
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
75
+ checksum = "f0b21006cd1874ae9e650973c565615676dc4a274c965bb0a73796dac838ce4f"
96
76
 
97
77
  [[package]]
98
78
  name = "linux-raw-sys"
99
- version = "0.4.8"
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 = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
108
- dependencies = [
109
- "autocfg",
110
- "scopeguard",
111
- ]
81
+ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
112
82
 
113
83
  [[package]]
114
84
  name = "memoffset"
115
- version = "0.9.0"
85
+ version = "0.9.1"
116
86
  source = "registry+https://github.com/rust-lang/crates.io-index"
117
- checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
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.16"
94
+ version = "0.2.19"
125
95
  source = "registry+https://github.com/rust-lang/crates.io-index"
126
- checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
96
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
127
97
  dependencies = [
128
98
  "autocfg",
129
99
  ]
130
100
 
131
101
  [[package]]
132
102
  name = "once_cell"
133
- version = "1.18.0"
103
+ version = "1.20.2"
134
104
  source = "registry+https://github.com/rust-lang/crates.io-index"
135
- checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
105
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
136
106
 
137
107
  [[package]]
138
- name = "parking_lot"
139
- version = "0.12.1"
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 = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
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.68"
115
+ version = "1.0.88"
163
116
  source = "registry+https://github.com/rust-lang/crates.io-index"
164
- checksum = "5b1106fec09662ec6dd98ccac0f81cef56984d0b49f75c92d8cbad76e20c005c"
117
+ checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9"
165
118
  dependencies = [
166
119
  "unicode-ident",
167
120
  ]
168
121
 
169
122
  [[package]]
170
123
  name = "pyo3"
171
- version = "0.19.2"
124
+ version = "0.22.5"
172
125
  source = "registry+https://github.com/rust-lang/crates.io-index"
173
- checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38"
126
+ checksum = "3d922163ba1f79c04bc49073ba7b32fd5a8d3b76a87c955921234b8e77333c51"
174
127
  dependencies = [
175
128
  "cfg-if",
176
129
  "indoc",
177
130
  "libc",
178
131
  "memoffset",
179
- "parking_lot",
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.19.2"
142
+ version = "0.22.5"
189
143
  source = "registry+https://github.com/rust-lang/crates.io-index"
190
- checksum = "076c73d0bc438f7a4ef6fdd0c3bb4732149136abd952b110ac93e4edb13a6ba5"
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.19.2"
152
+ version = "0.22.5"
199
153
  source = "registry+https://github.com/rust-lang/crates.io-index"
200
- checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9"
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.19.2"
162
+ version = "0.22.5"
209
163
  source = "registry+https://github.com/rust-lang/crates.io-index"
210
- checksum = "dfeb4c99597e136528c6dd7d5e3de5434d1ceaf487436a3f03b2d56b6fc9efd1"
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.19.2"
174
+ version = "0.22.5"
221
175
  source = "registry+https://github.com/rust-lang/crates.io-index"
222
- checksum = "947dc12175c254889edc0c02e399476c2f652b4b9ebd123aa655c224de259536"
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.12"
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.33"
195
+ version = "1.0.37"
240
196
  source = "registry+https://github.com/rust-lang/crates.io-index"
241
- checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
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.17"
204
+ version = "0.38.37"
258
205
  source = "registry+https://github.com/rust-lang/crates.io-index"
259
- checksum = "f25469e9ae0f3d0047ca8b93fc56843f38e6774f0914a107ff8b41be8be8e0b7"
206
+ checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
260
207
  dependencies = [
261
- "bitflags 2.4.0",
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 = "1.0.109"
217
+ version = "2.0.79"
283
218
  source = "registry+https://github.com/rust-lang/crates.io-index"
284
- checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
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.11"
228
+ version = "0.12.16"
294
229
  source = "registry+https://github.com/rust-lang/crates.io-index"
295
- checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
230
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
296
231
 
297
232
  [[package]]
298
233
  name = "unicode-ident"
299
- version = "1.0.12"
234
+ version = "1.0.13"
300
235
  source = "registry+https://github.com/rust-lang/crates.io-index"
301
- checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
236
+ checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
302
237
 
303
238
  [[package]]
304
239
  name = "unindent"
305
- version = "0.1.11"
240
+ version = "0.2.3"
306
241
  source = "registry+https://github.com/rust-lang/crates.io-index"
307
- checksum = "e1766d682d402817b5ac4490b3c3002d91dfa0d22812f341609f97b08757359c"
242
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
308
243
 
309
244
  [[package]]
310
245
  name = "which"
311
- version = "4.4.2"
246
+ version = "6.0.3"
312
247
  source = "registry+https://github.com/rust-lang/crates.io-index"
313
- checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
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.51.1"
258
+ version = "0.58.0"
324
259
  source = "registry+https://github.com/rust-lang/crates.io-index"
325
- checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
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.51.1"
268
+ version = "0.58.0"
334
269
  source = "registry+https://github.com/rust-lang/crates.io-index"
335
- checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
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.48.0"
322
+ version = "0.52.0"
343
323
  source = "registry+https://github.com/rust-lang/crates.io-index"
344
- checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
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.48.5"
331
+ version = "0.52.6"
352
332
  source = "registry+https://github.com/rust-lang/crates.io-index"
353
- checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
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.48.5"
347
+ version = "0.52.6"
367
348
  source = "registry+https://github.com/rust-lang/crates.io-index"
368
- checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
349
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
369
350
 
370
351
  [[package]]
371
352
  name = "windows_aarch64_msvc"
372
- version = "0.48.5"
353
+ version = "0.52.6"
373
354
  source = "registry+https://github.com/rust-lang/crates.io-index"
374
- checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
355
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
375
356
 
376
357
  [[package]]
377
358
  name = "windows_i686_gnu"
378
- version = "0.48.5"
359
+ version = "0.52.6"
379
360
  source = "registry+https://github.com/rust-lang/crates.io-index"
380
- checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
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.48.5"
371
+ version = "0.52.6"
385
372
  source = "registry+https://github.com/rust-lang/crates.io-index"
386
- checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
373
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
387
374
 
388
375
  [[package]]
389
376
  name = "windows_x86_64_gnu"
390
- version = "0.48.5"
377
+ version = "0.52.6"
391
378
  source = "registry+https://github.com/rust-lang/crates.io-index"
392
- checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
379
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
393
380
 
394
381
  [[package]]
395
382
  name = "windows_x86_64_gnullvm"
396
- version = "0.48.5"
383
+ version = "0.52.6"
397
384
  source = "registry+https://github.com/rust-lang/crates.io-index"
398
- checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
385
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
399
386
 
400
387
  [[package]]
401
388
  name = "windows_x86_64_msvc"
402
- version = "0.48.5"
389
+ version = "0.52.6"
403
390
  source = "registry+https://github.com/rust-lang/crates.io-index"
404
- checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
391
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
405
392
 
406
393
  [[package]]
407
394
  name = "winpty-rs"
408
- version = "0.3.13"
395
+ version = "0.4.0"
409
396
  source = "registry+https://github.com/rust-lang/crates.io-index"
410
- checksum = "c9cfc90c965e6c42cf18cc013407d9441e880195a1bc1b4ff03e3a73d74919d8"
397
+ checksum = "13fce64972ee42703b2be1573fa22ddd0f92cdffe029e5f483e22d498252a748"
411
398
  dependencies = [
412
- "bitflags 2.4.0",
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.12"
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.3.13"
17
+ winpty-rs = "0.4"
18
18
 
19
19
  [dependencies.pyo3]
20
- version = "0.19.2"
20
+ version = "0.22.3"
21
21
  features = ["extension-module"]
22
22
 
23
23
  [package.metadata.docs.rs]
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: pywinpty
3
- Version: 2.0.12
3
+ Version: 2.0.14
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
@@ -366,9 +366,9 @@ impl PyPTY {
366
366
  }
367
367
 
368
368
  #[pymodule]
369
- fn winpty(py: Python, m: &PyModule) -> PyResult<()> {
369
+ fn winpty(py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
370
370
  m.add("__version__", VERSION)?;
371
- m.add("WinptyError", py.get_type::<WinptyError>())?;
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