File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change
1
+ AROS_VERSION := 0.0.1rc1
2
+
3
+ dist :
4
+ python3 -m pip install virtualenv
5
+ python3 -m pip install --upgrade build twine
6
+ python3 -m build --wheel --sdist
7
+
8
+ build : dist
9
+
10
+ archlinux :
11
+ mkdir -p dist/arch
12
+ cp PKGBUILD dist/arch
13
+ cp dist/aros_node-${AROS_VERSION} .tar.gz dist/arch
14
+ (cd dist/arch; makepkg --skipchecksums -f)
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.1 "
1
+ __version__ = "0.0.1rc1 "
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ set -e # abort on error
13
13
pip uninstall -y aros-node
14
14
15
15
# Get version
16
- VERSION=0.0.1
16
+ VERSION=0.0.1rc1
17
17
echo " Upgrading to AROS v${VERSION} "
18
18
19
19
# Upgrade the build system (PEP517/518 compatible)
@@ -22,4 +22,4 @@ python3 -m pip install --upgrade build
22
22
python3 -m build --sdist --wheel .
23
23
24
24
# Reinstall the package with most recent version
25
- pip install --upgrade --no-cache-dir " dist/aros_node-${VERSION} -py3-none-any.whl"
25
+ pip install --upgrade --no-cache-dir " dist/aros_node-${VERSION} -py3-none-any.whl"
You can’t perform that action at this time.
0 commit comments