diff --git a/.gitignore b/.gitignore index 5cb0447..1e66b17 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,10 @@ *.orig +__pycache__ MANIFEST +/*.egg-info/ /dist/ +/build/ /.idea/ /__pycache__/ /test/barcodes/ -/test/libs/ \ No newline at end of file +/test/libs/ diff --git a/_docs/build-requirements.txt b/_docs/build-requirements.txt index c50c50a..dbf3f77 100644 --- a/_docs/build-requirements.txt +++ b/_docs/build-requirements.txt @@ -1,4 +1,5 @@ -pip setuptools twine wheel + +pillow diff --git a/_docs/packaging_notes.txt b/_docs/packaging_notes.txt index 6251143..6111375 100644 --- a/_docs/packaging_notes.txt +++ b/_docs/packaging_notes.txt @@ -10,14 +10,15 @@ https://packaging.python.org/tutorials/packaging-projects/ https://docs.python.org/3/distutils/packageindex.html#pypirc 2. Install/update build libs: - C:\python\venv\pdf417as_str\Scripts\pip install --upgrade -r C:\kvk\develop\Python\pdf417as_str\_docs\build-requirements.txt + C:\python\venv\pdf417as_str311\Scripts\python.exe -m pip install --upgrade pip + C:\python\venv\pdf417as_str311\Scripts\pip install --upgrade -r C:\kvk\develop\Python\pdf417as_str\_docs\build-requirements.txt 3. Generating distribution archives cd C:\kvk\develop\Python\pdf417as_str\ - C:\python\venv\pdf417as_str\Scripts\python.exe C:\kvk\develop\Python\pdf417as_str\setup.py sdist + C:\python\venv\pdf417as_str311\Scripts\python.exe C:\kvk\develop\Python\pdf417as_str\setup.py sdist bdist_wheel 4. Check the distribution archives: - C:\python\venv\pdf417as_str\Scripts\python.exe -m twine check dist/* + C:\python\venv\pdf417as_str311\Scripts\python.exe -m twine check dist/* 5. Uploading the distribution archives: - C:\python\venv\pdf417as_str\Scripts\python.exe -m twine upload dist/* + C:\python\venv\pdf417as_str311\Scripts\python.exe -m twine upload dist/* diff --git a/_docs/release_notes.rst b/_docs/release_notes.rst index a4dbdf2..256de14 100644 --- a/_docs/release_notes.rst +++ b/_docs/release_notes.rst @@ -1,3 +1,7 @@ +1.1.0 +===== +* Fixed bugged release after rename encode to encode417 + 1.0.0 ===== * encode fn renamed to encode417 diff --git a/setup.py b/setup.py index cec02af..77a69e6 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='pdf417as-str', - version='1.0.0', + version='1.1.0', packages=['pdf417as_str'], url='https://github.com/ikvk/pdf417as_str', license='LGPLv3',