pywinpty 2.0.15__tar.gz → 3.0.0__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 (27) hide show
  1. {pywinpty-2.0.15 → pywinpty-3.0.0}/.github/workflows/windows_build.yml +5 -2
  2. {pywinpty-2.0.15 → pywinpty-3.0.0}/.github/workflows/windows_release.yml +3 -0
  3. {pywinpty-2.0.15 → pywinpty-3.0.0}/.gitignore +5 -1
  4. {pywinpty-2.0.15 → pywinpty-3.0.0}/CHANGELOG.md +11 -0
  5. {pywinpty-2.0.15 → pywinpty-3.0.0}/Cargo.lock +183 -188
  6. {pywinpty-2.0.15 → pywinpty-3.0.0}/Cargo.toml +6 -3
  7. pywinpty-3.0.0/PKG-INFO +5 -0
  8. pywinpty-3.0.0/build.rs +87 -0
  9. pywinpty-3.0.0/nuget.config +7 -0
  10. {pywinpty-2.0.15 → pywinpty-3.0.0}/src/lib.rs +49 -27
  11. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/ptyprocess.py +21 -12
  12. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/tests/test_pty.py +20 -18
  13. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/tests/test_ptyprocess.py +7 -4
  14. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/winpty.pyi +13 -7
  15. pywinpty-2.0.15/PKG-INFO +0 -145
  16. {pywinpty-2.0.15 → pywinpty-3.0.0}/.github/dependabot.yml +0 -0
  17. {pywinpty-2.0.15 → pywinpty-3.0.0}/.github/scripts/copy_winpty.sh +0 -0
  18. {pywinpty-2.0.15 → pywinpty-3.0.0}/.github/workflows/linux_sdist.yml +0 -0
  19. {pywinpty-2.0.15 → pywinpty-3.0.0}/LICENSE.txt +0 -0
  20. {pywinpty-2.0.15 → pywinpty-3.0.0}/MANIFEST.in +0 -0
  21. {pywinpty-2.0.15 → pywinpty-3.0.0}/README.md +0 -0
  22. {pywinpty-2.0.15 → pywinpty-3.0.0}/RELEASE.md +0 -0
  23. {pywinpty-2.0.15 → pywinpty-3.0.0}/pyproject.toml +0 -0
  24. {pywinpty-2.0.15 → pywinpty-3.0.0}/runtests.py +0 -0
  25. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/__init__.py +0 -0
  26. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/enums.py +0 -0
  27. {pywinpty-2.0.15 → pywinpty-3.0.0}/winpty/tests/__init__.py +0 -0
@@ -31,6 +31,9 @@ jobs:
31
31
  target: x86_64-pc-windows-msvc
32
32
  override: true
33
33
  components: rustfmt, clippy
34
+ - uses: nuget/setup-nuget@v2
35
+ with:
36
+ nuget-version: '5.x'
34
37
  - name: Remove free-threaded suffix from version
35
38
  env:
36
39
  PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
@@ -72,13 +75,13 @@ jobs:
72
75
  # Enable this to get RDP access to the worker.
73
76
  # - name: Download
74
77
  # # if: ${{ failure() }}
75
- # run: Invoke-WebRequest https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip -OutFile ngrok.zip
78
+ # run: Invoke-WebRequest https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-windows-amd64.zip -OutFile ngrok.zip
76
79
  # - name: Extract
77
80
  # # if: ${{ failure() }}
78
81
  # run: Expand-Archive ngrok.zip
79
82
  # - name: Auth
80
83
  # # if: ${{ failure() }}
81
- # run: .\ngrok\ngrok.exe authtoken 1raaG4z7gsaCRlLw8cRkUWW6ItF_2LWTUFxXwd6UeeJNAAAci
84
+ # run: .\ngrok\ngrok.exe config add-authtoken 1raaG4z7gsaCRlLw8cRkUWW6ItF_2LWTUFxXwd6UeeJNAAAci
82
85
  # - name: Enable TS
83
86
  # # if: ${{ failure() }}
84
87
  # run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0
@@ -26,6 +26,9 @@ jobs:
26
26
  target: x86_64-pc-windows-msvc
27
27
  override: true
28
28
  components: rustfmt, clippy
29
+ - uses: nuget/setup-nuget@v2
30
+ with:
31
+ nuget-version: '5.x'
29
32
  - name: Remove free-threaded suffix from version
30
33
  env:
31
34
  PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
@@ -107,6 +107,7 @@ cywinpty.c
107
107
  # Winpty binaries
108
108
  *.exe
109
109
  *.dll
110
+ *.lib
110
111
 
111
112
  # Git giles
112
113
  *.orig
@@ -121,4 +122,7 @@ cywinpty.c
121
122
  CppProperties.json
122
123
 
123
124
  # Debug VS files
124
- *.sln
125
+ *.sln
126
+
127
+ # NuGet ConPTY package
128
+ Microsoft.Windows.Console.ConPTY*/
@@ -1,3 +1,14 @@
1
+ ## Version 3.0.0 (2025/08/12)
2
+
3
+
4
+ ### Pull Requests Merged
5
+
6
+ * [PR 517](https://github.com/andfoy/pywinpty/pull/517) - Solve type issues, by [@XY0797](https://github.com/XY0797)
7
+ * [PR 515](https://github.com/andfoy/pywinpty/pull/515) - Update winpty-rs to v1.0.3, by [@andfoy](https://github.com/andfoy)
8
+
9
+ In this release 2 pull requests were closed.
10
+
11
+
1
12
  ## Version 2.0.15 (2025/02/03)
2
13
 
3
14