Skip to content

Commit ee4fd41

Browse files
committed
Merge branch 'prerelease-4-12' PR #11
2 parents 22a481b + a55e7b3 commit ee4fd41

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

NEW_RELEASE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
```

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
build
12
flake8>=6.0.0
23
mypy>=0.991
34
sphinx>=5.3.0
@@ -6,3 +7,4 @@ myst-parser>=1.0.0
67
types-PyYAML
78
types-requests
89
types-tabulate
10+
twine

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
import sys
55

6-
VERSION = '0.4.11'
6+
VERSION = '0.4.12'
77
NAME = 'pyamplipi'
88

99
try:
@@ -59,7 +59,10 @@ def required(sfx=''):
5959
entry_points=dict(console_scripts=console_scripts),
6060
packages=['pyamplipi'],
6161
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+
],
6467
zip_safe=True,
6568
)

0 commit comments

Comments
 (0)