File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change
1
+ # Making a new pyamplipi release
2
+
3
+ ``` bash
4
+ # build the latest
5
+ python -m build
6
+
7
+ # upload to pypi test (go to the pypi test website and make sure everything looks right)
8
+ twine upload -r testpypi dist/pyamplipi-${VERSION} *
9
+
10
+ # upload to pypi
11
+ twine upload dist/pyamplipi-${VERSION} *
12
+
13
+ ```
Original file line number Diff line number Diff line change
1
+ build
1
2
flake8 >= 6.0.0
2
3
mypy >= 0.991
3
4
sphinx >= 5.3.0
@@ -6,3 +7,4 @@ myst-parser>=1.0.0
6
7
types-PyYAML
7
8
types-requests
8
9
types-tabulate
10
+ twine
Original file line number Diff line number Diff line change 3
3
import os
4
4
import sys
5
5
6
- VERSION = '0.4.11 '
6
+ VERSION = '0.4.12 '
7
7
NAME = 'pyamplipi'
8
8
9
9
try :
@@ -59,7 +59,10 @@ def required(sfx=''):
59
59
entry_points = dict (console_scripts = console_scripts ),
60
60
packages = ['pyamplipi' ],
61
61
classifiers = ['Development Status :: 4 - Beta' ,
62
- 'Programming Language :: Python :: 3.5' ,
63
- 'Programming Language :: Python :: 3.6' ],
62
+ 'Programming Language :: Python :: 3.9' ,
63
+ 'Programming Language :: Python :: 3.10' ,
64
+ 'Programming Language :: Python :: 3.11' ,
65
+ 'Programming Language :: Python :: 3.12' ,
66
+ ],
64
67
zip_safe = True ,
65
68
)
You can’t perform that action at this time.
0 commit comments