Skip to content

Commit

Permalink
🐛 Fix setup.py bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xFGhoul committed Jan 8, 2023
1 parent f8be6f4 commit aaac831
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 28 deletions.
6 changes: 5 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ I know this is a pretty quick release, and the jump from `1.1` to `1.5` but I fe

- **Updated Minimum Python Requirement To 3.11**

- **Refactoring and Misc Improvements**
- **Refactoring and Misc Improvements**

## 1.6 - 2022-01-07

Minor bump for `setup.py` bug that didn't allow importing.
23 changes: 0 additions & 23 deletions pyproject.toml

This file was deleted.

2 changes: 1 addition & 1 deletion pyprotector/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def encrypted_formatter(record):

@final
class ProtectorInfo:
VERSION: Final[str] = "1.5"
VERSION: Final[str] = "1.6"
ROOT_PATH: str = os.path.abspath(os.curdir)


Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@

from distutils.core import setup

with open("README.md") as readme_file:
with open("README.md", encoding="utf8") as readme_file:
README = readme_file.read()

with open("HISTORY.md") as history_file:
HISTORY = history_file.read()

setup(
name="PythonProtector",
packages=["pyprotector"],
version="1.5",
packages=["pyprotector", "pyprotector.utils", "pyprotector.modules"],
version="1.6",
license="MIT",
description="Library for protecting your python files",
author="Ghoul & Marci",
Expand Down

0 comments on commit aaac831

Please sign in to comment.