Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- 3.9
- '3.10'
- '3.11'
- '3.12.0-rc.1'
- '3.12'
python-arch:
- x86
- x64
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

## 0.10.2 - TBD
## 0.10.2 - 2023-10-04

## 0.10.1 - 2023-09-29
* Another rename of the `sspi` package dependency to `sspilib`

## 0.10.1 - 2023-09-29 - Has been yanked

* Rename `sspi` package dependency to `sspic` to avoid conflicts with pywin32

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ See [How to Install](#how-to-install) for more details

* CPython 3.8+
* [cryptography](https://github.com/pyca/cryptography)
* [sspic](https://github.com/jborean93/pysspic) - Windows only
* [sspilib](https://github.com/jborean93/sspilib) - Windows only

### Optional Requirements

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers = [
]
dependencies = [
"cryptography",
"sspic >= 0.1.0; sys_platform == 'win32'"
"sspilib >= 0.1.0; sys_platform == 'win32'"
]
dynamic = ["version"]

Expand Down Expand Up @@ -122,7 +122,7 @@ module = "spnego._sspi"
disallow_any_unimported = false

[[tool.mypy.overrides]]
module = "sspic.*"
module = "sspilib.*"
ignore_missing_imports = true

# These types are used in tests, too much effort to create stubs
Expand Down
Loading