Skip to content

Commit

Permalink
Merge pull request #93 from MannLabs/fix-fasta-install-location
Browse files Browse the repository at this point in the history
Fix fasta install location
  • Loading branch information
mschwoer authored Feb 20, 2025
2 parents 524497c + f56a690 commit 6107444
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.13"
current_version = "0.2.0"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
Expand Down
2 changes: 1 addition & 1 deletion alphamap/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.13"
__version__ = "0.2.0"
5 changes: 3 additions & 2 deletions alphamap/sequenceplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
# Cell
import os
import tempfile
import warnings

# Cell
import pandas as pd
Expand Down Expand Up @@ -403,8 +404,8 @@ def plot_single_peptide_traces(df_plot,protein,fasta):
HAS_STRUCTUREMAP = True
except ModuleNotFoundError:
HAS_STRUCTUREMAP = False
print("WARNING: dependency 'structuremap' is not installed.")

warnings.filterwarnings("module", category=ImportWarning)
warnings.warn("structuremap not installed. If you want to use its functionality, install alphamap with the 'structuremap' extra.", ImportWarning)

# Cell
def get_quality_category(s):
Expand Down
4 changes: 2 additions & 2 deletions release/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<key>CFBundleIconFile</key>
<string>alpha_logo.icns</string>
<key>CFBundleIdentifier</key>
<string>alphamap.0.1.13</string>
<string>alphamap.0.2.0</string>
<key>CFBundleShortVersionString</key>
<string>0.1.13</string>
<string>0.2.0</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
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>AlphaMap 0.1.13</title>
<title>AlphaMap 0.2.0</title>
<background mime-type="image/png" file="alpha_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/alphamap_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 "AlphaMap"
#define MyAppVersion "0.1.13"
#define MyAppVersion "0.2.0"
#define MyAppPublisher "Max Planck Institute of Biochemistry, Mann department"
#define MyAppURL "https://github.com/MannLabs/alphamap"
#define MyAppExeName "alphamap_gui.exe"
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ user = ibludau
# author_email = email@example.com
copyright = Mann Labs
branch = master
version = 0.1.13
version = 0.2.0
min_python = 3.8
audience = Developers
language = English
Expand Down

0 comments on commit 6107444

Please sign in to comment.