Skip to content

Commit cf8cff4

Browse files
authored
Dev (#67)
* README fix (#63) * Minor change Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * Added badge to README Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * New version Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * New version Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * New version Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * New version Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * New version Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * Fixed small release issues Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> * Fixed small Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> --------- Signed-off-by: Gabriel Lindeblad <Gabriel.lindeblad@icloud.com> Signed-off-by: Gabriel Lindeblad <gabriel.lindeblad@icloud.com>
1 parent 33f281c commit cf8cff4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ jobs:
113113
./dist/*.whl
114114
- name: Create GitHub Release
115115
env:
116-
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
116+
GITHUB_TOKEN: ${{ secrets.RELEASE }}
117117
run: >-
118118
gh release create
119119
'${{ github.ref_name }}'
120120
--repo '${{ github.repository }}'
121121
--notes ""
122122
- name: Upload artifact signatures to GitHub Release
123123
env:
124-
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
124+
GITHUB_TOKEN: ${{ secrets.RELEASE }}
125125
# Upload to GitHub Release using the `gh` CLI.
126126
# `dist/` contains the built packages, and the
127127
# sigstore-produced signatures and certificates.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
44

55
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
66

7-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Getting started
3131
This is a short guide to help you get started.
3232

3333
### Installation
34-
You can install the latest version of `AES-Python` from [PyPI](Fix this link!!!!) using pip.
34+
You can install the latest version of `AES-Python` from [PyPI](https://pypi.org/project/AES-Python/) using pip.
3535

3636
```
3737
$ python3 -m pip install AES_Python

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "AES_Python"
7-
version = "v1.5.1"
7+
version = "v1.5.2"
88
description = "AES (Advanced Encryption Standard) implementation in Python-3"
99
readme = "README.md"
1010
authors = [{name = "Gabriel Lindeblad", email = "Gabriel.Lindeblad@icloud.com"}]
@@ -16,7 +16,7 @@ classifiers = [
1616
"Programming Language :: Python :: 3.12",
1717
]
1818
keywords = ["AES", "AES-Python", "Advanced Encryption Standard", "encryption", "cryptography"]
19-
requires-python = ">=3.8"
19+
requires-python = ">=3.11"
2020

2121
[project.optional-dependencies]
2222
dev = ["pytest", "pytest-cov", "mypy", "flake8", "tox"]

0 commit comments

Comments
 (0)