Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into development
Browse files Browse the repository at this point in the history
# Conflicts:
#	alphastats/DataSet_Preprocess.py
#	alphastats/DataSet_Statistics.py
#	alphastats/plots/VolcanoPlot.py
#	alphastats/statistics/DifferentialExpressionAnalysis.py
#	release/macos/create_installer_macos.sh
  • Loading branch information
mschwoer committed Sep 21, 2024
2 parents 6222756 + d30206a commit 7308dc4
Show file tree
Hide file tree
Showing 13 changed files with 55 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.7
current_version = 0.6.9
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
Expand Down
20 changes: 20 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
changelog:
exclude:
# labels:
# - ignore-for-release
authors:
- octocat
categories:
- title: Breaking Changes
labels:
- breaking-change
- title: Bug fixes
labels:
- bug
- title: New Features
labels:
- enhancement
- title: Other Changes / unlabeled
labels:
- "*"
24 changes: 24 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Create a draft release and build and upload all installers to it.
name: Create Release

on:
workflow_dispatch:
inputs:
commitish_to_release:
type: string
description: 'Enter commit hash or branch to release (default: main).'
default: "main"

jobs:
create-release:
uses: MannLabs/alphashared/.github/workflows/create_release.yml@v1
secrets: inherit
permissions:
contents: write
with:
package_name: alphastats
commitish_to_release: ${{ inputs.commitish_to_release }}
build_nodejs_ui: false
test_app: false
skip_macos_arm64_build: true
python_version: "3.10"
2 changes: 1 addition & 1 deletion alphastats/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__project__ = "alphastats"
__version__ = "0.6.7"
__version__ = "0.6.9"
__license__ = "Apache"
__description__ = "An open-source Python package for Mass Spectrometry Analysis"
__author__ = "Mann Labs"
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Elena Krismer"

# The full version, including alpha/beta/rc tags
release = "0.6.7"
release = "0.6.9"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion release/linux/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: alphastats
Version: 0.6.7
Version: 0.6.9
Architecture: all
Maintainer: MannLabs
Description: alphastats
Expand Down
2 changes: 1 addition & 1 deletion release/linux/create_installer_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ python setup.py sdist bdist_wheel
# Setting up the local package
cd release/linux
# Make sure you include the required extra packages and always use the stable or very-stable options!
pip install "../../dist/alphastats-0.6.7-py3-none-any.whl"
pip install "../../dist/alphastats-0.6.9-py3-none-any.whl"

# Creating the stand-alone pyinstaller folder
pip install pyinstaller==5.8
Expand Down
2 changes: 1 addition & 1 deletion release/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<key>CFBundleIconFile</key>
<string>alphapeptstats_logo.icns</string>
<key>CFBundleIdentifier</key>
<string>alphastats.0.6.7</string>
<string>alphastats.0.6.9</string>
<key>CFBundleShortVersionString</key>
<string>0.6.0</string>
<key>CFBundleInfoDictionaryVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion release/macos/create_installer_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ python setup.py sdist bdist_wheel

# Setting up the local package
cd release/macos
pip install "../../dist/alphastats-0.6.7-py3-none-any.whl"
pip install "../../dist/alphastats-0.6.9-py3-none-any.whl"

# Creating the stand-alone pyinstaller folder
pip install pyinstaller==5.8
Expand Down
2 changes: 1 addition & 1 deletion release/macos/distribution.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-script minSpecVersion="1.000000">
<title>AlphaPeptStats 0.6.7</title>
<title>AlphaPeptStats 0.6.9</title>
<background mime-type="image/png" file="alphapeptstats_logo.png" scaling="proportional"/>
<welcome file="welcome.html" mime-type="text/html" />
<conclusion file="conclusion.html" mime-type="text/html" />
Expand Down
2 changes: 1 addition & 1 deletion release/windows/alphastats_innoinstaller.iss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
; so all paths are given relative to the location of this .iss file.

#define MyAppName "AlphaPeptStats"
#define MyAppVersion "0.6.7"
#define MyAppVersion "0.6.9"
#define MyAppPublisher "MannLabs"
#define MyAppURL "https://github.com/MannLabs/alphapeptstats"
#define MyAppExeName "alphastats_gui.exe"
Expand Down
2 changes: 1 addition & 1 deletion release/windows/create_installer_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ python setup.py sdist bdist_wheel
# Setting up the local package
cd release/windows
# Make sure you include the required extra packages and always use the stable or very-stable options!
pip install "../../dist/alphastats-0.6.7-py3-none-any.whl"
pip install "../../dist/alphastats-0.6.9-py3-none-any.whl"

# Creating the stand-alone pyinstaller folder
pip install pyinstaller==5.8
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_pip_wheel():
requirements = get_requirements()
setuptools.setup(
name="alphastats",
version="0.6.7",
version="0.6.9",
license="Apache",
description="An open-source Python package for automated and scalable statistical analysis of mass spectrometry-based proteomics",
long_description=get_long_description(),
Expand Down

0 comments on commit 7308dc4

Please sign in to comment.