Skip to content

Commit

Permalink
4.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
TeaM-TL committed Mar 24, 2024
1 parent 4d3c616 commit 0ade306
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 2024

4.4.8 fix requirements

4.4.7 fix requrements

4.4.6 fix save settings
Expand Down
2 changes: 1 addition & 1 deletion fotokilof/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
THE SOFTWARE.
"""

__version__ = "4.4.7"
__version__ = "4.4.8"
__author__ = "Tomasz Łuczak"
__email__ = "[email protected]"
__appname__ = "FotoKilof"
Expand Down
2 changes: 1 addition & 1 deletion scripts/0_pypi_setuptools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd ..
# Python 3.8
#python3 setup.py sdist bdist
# Python 3.7
python3 setup.py sdist bdist_wheel
python3.11 setup.py sdist bdist_wheel

cd $CWD

Expand Down
2 changes: 1 addition & 1 deletion scripts/1_pypi_run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
VERSION=`cat ../fotokilof/version.py | grep version | awk '{print $3}' | tr -d '"'`
python3 ../dist/FotoKilof-$VERSION-py3-none-any.whl/fotokilof &
python3.11 ../dist/FotoKilof-$VERSION-py3-none-any.whl/fotokilof &
exit
2 changes: 1 addition & 1 deletion scripts/2_pypi_upload.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
VERSION=`cat ../fotokilof/version.py | grep version | awk '{print $3}' | tr -d '"'`
echo "FotoKilof-$VERSION"
python3 -m twine upload ../dist/FotoKilof-$VERSION*
python3.11 -m twine upload ../dist/FotoKilof-$VERSION*

#EOF

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
python_requires='>=3.6',
include_package_data=True,
packages=find_packages(),
install_requires=['pillow','wand','ttkbootstrap','json','requests'],
install_requires=['pillow','wand','ttkbootstrap','requests'],
entry_points = {
"gui_scripts": [
"fotokilof = fotokilof:__main__",
Expand Down

0 comments on commit 0ade306

Please sign in to comment.