You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's go over this checklist when releasing a new version of SLP-AA. Copy it as a new comment for each release.
Update the VERSION variable in constant.py. The Help button relies on this variable to decide which Readthedocs page to load! VERSION should be a tuple of (major, minor, patch). For example, VERSION = (1,0,0) for version 1.0.0. Make sure it matches the release tag on GitHub.
Freeze by running pyinstaller slapp.spec. If the command does not work, try pip install -r requirements_freeze.txt first.
(MacOS only) After the freeze, package SLPAA.app as a disk image (SLPAA.dmg). build_dmg.sh is a shell script designed for this, but it is not optimal.
Create a new release
Enter a new tag in the format of v.X.Y.Z where X, Y, and Z correspond to the VERSION variable specified above. See the example below for Version 0.1.0.
Update the VERSION variable in constant.py. The Help button relies on this variable to decide which Readthedocs page to load! VERSION should be a tuple of (major, minor, patch). For example, VERSION = (1,0,0) for version 1.0.0. Make sure it matches the release tag on GitHub.
Freeze by running pyinstaller slapp.spec. If the command does not work, try pip install -r requirements_freeze.txt first.
(MacOS only) After the freeze, package SLPAA.app as a disk image (SLPAA.dmg). build_dmg.sh is a shell script designed for this, but it is not optimal.
Create a new release
Enter a new tag in the format of v.X.Y.Z where X, Y, and Z correspond to the VERSION variable specified above. See the example below for Version 0.1.0.
Let's go over this checklist when releasing a new version of SLP-AA. Copy it as a new comment for each release.
VERSION
variable inconstant.py
. The Help button relies on this variable to decide which Readthedocs page to load!VERSION
should be a tuple of (major, minor, patch). For example,VERSION = (1,0,0)
for version 1.0.0. Make sure it matches the release tag on GitHub.pyinstaller slapp.spec
. If the command does not work, trypip install -r requirements_freeze.txt
first.build_dmg.sh
is a shell script designed for this, but it is not optimal.Enter a new tag in the format of
v.X.Y.Z
where X, Y, and Z correspond to theVERSION
variable specified above. See the example below for Version 0.1.0.The text was updated successfully, but these errors were encountered: