Skip to content

Commit

Permalink
Rename sspic to sspilib (#72)
Browse files Browse the repository at this point in the history
Renames the sspic library to sspilib to avoid an unfortunate racial slur
in the previous name.
  • Loading branch information
jborean93 authored Oct 3, 2023
1 parent 3d022e6 commit cba319d
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 76 deletions.
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

0 comments on commit cba319d

Please sign in to comment.