Skip to content

Commit

Permalink
Fix bug release after rename encode to encode417
Browse files Browse the repository at this point in the history
  • Loading branch information
ikvk committed Feb 26, 2024
1 parent 70183c0 commit 2ca513e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
*.orig
__pycache__
MANIFEST
/*.egg-info/
/dist/
/build/
/.idea/
/__pycache__/
/test/barcodes/
/test/libs/
/test/libs/
3 changes: 2 additions & 1 deletion _docs/build-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pip
setuptools
twine
wheel

pillow
9 changes: 5 additions & 4 deletions _docs/packaging_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
4 changes: 4 additions & 0 deletions _docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.1.0
=====
* Fixed bugged release after rename encode to encode417

1.0.0
=====
* encode fn renamed to encode417
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 2ca513e

Please sign in to comment.