diff --git a/ReadMe.md b/ReadMe.md index 11ccb50..97074a7 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -8,6 +8,12 @@ unpin.py [![Unlicensed work](https://raw.githubusercontent.com/unlicense/unlicen [![Libraries.io Status](https://img.shields.io/librariesio/github/KOLANICH-tools/unpin.py.svg)](https://libraries.io/github/KOLANICH-tools/unpin.py) [![Code style: antiflash](https://img.shields.io/badge/code%20style-antiflash-FFF.svg)](https://github.com/KOLANICH-tools/antiflash.py) +**We have moved to https://codeberg.org/KOLANICH-tools/unpin.py, grab new versions there.** + +Under the disguise of "better security" Micro$oft-owned GitHub has [discriminated users of 1FA passwords](https://github.blog/2023-03-09-raising-the-bar-for-software-security-github-2fa-begins-march-13/) while having commercial interest in success of [FIDO 1FA specifications](https://fidoalliance.org/specifications/download/) and [Windows Hello implementation](https://support.microsoft.com/en-us/windows/passkeys-in-windows-301c8944-5ea2-452b-9886-97e4d2ef4422) which [it promotes as a replacement for passwords](https://github.blog/2023-07-12-introducing-passwordless-authentication-on-github-com/). It will result in dire consequencies and is competely inacceptable, [read why](https://codeberg.org/KOLANICH/Fuck-GuanTEEnomo). + +If you don't want to participate in harming yourself, it is recommended to follow the lead and migrate somewhere away of GitHub and Micro$oft. Here is [the list of alternatives and rationales to do it](https://github.com/orgs/community/discussions/49869). If they delete the discussion, there are certain well-known places where you can get a copy of it. [Read why you should also leave GitHub](https://codeberg.org/KOLANICH/Fuck-GuanTEEnomo). + A tool to remove harmful versions pinnings from prebuilt wheels. ToDo: **Currently `libzip` is used for updating files witin the archive. It doesn't allow rewriting files in archives without creating a copy of the archive. [It is considered contradicting `libzip` goals by its authors.](https://github.com/nih-at/libzip/issues/304)**. We need a lib allowing to do that. diff --git a/pyproject.toml b/pyproject.toml index 555b676..f469175 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,14 +28,14 @@ dependencies = [ ] [project.optional-dependencies] wheel = [ - "libzip", # @ git+https://github.com/KOLANICH-libs/libzip.py.git + "libzip", # @ git+https://codeberg.org/KOLANICH-libs/libzip.py.git ] [project.scripts] unpin = "unpin.__main__:main" [project.urls] -Homepage = "https://github.com/KOLANICH-tools/unpin.py" +Homepage = "https://codeberg.org/KOLANICH-tools/unpin.py" [tool.setuptools] zip-safe = true diff --git a/unpin/__init__.py b/unpin/__init__.py index 268df54..d19e000 100644 --- a/unpin/__init__.py +++ b/unpin/__init__.py @@ -11,6 +11,10 @@ # pylint:disable=too-few-public-methods +from warnings import warn + +warn("We have moved from M$ GitHub to https://codeberg.org/KOLANICH-tools/unpin.py , read why on https://codeberg.org/KOLANICH/Fuck-GuanTEEnomo .") + class ParsedAST: __slots__ = ("ast", "pp")