-
Notifications
You must be signed in to change notification settings - Fork 19
Compatability updates #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
julianpollmann
merged 60 commits into
iomega:master
from
julianpollmann:compatability-updates
Oct 29, 2025
Merged
Changes from 58 commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
847d7d4
Add cffconvert.yml to validate CITATION.cff
abelsiqueira ce47211
Update CITATION.cff cffversion to 1.2.0
abelsiqueira d31ff32
Fixed missing keyword in model dict
hechth eb6c603
Update SpectrumDocument.py
niekdejonge 471e69e
Update setup.py
niekdejonge 8a5b578
Update setup.py
niekdejonge 0ee563d
Update setup.py
niekdejonge d4ee4e9
Update CI_build.yml
niekdejonge 97432d3
Update test_spectrum_document.py
niekdejonge c602277
Remove add losses from integration test
niekdejonge 427801e
Update test_spectrum_document.py
niekdejonge b12cd3d
Update SpectrumDocument.py
niekdejonge 1540f95
Update test_spectrum_document.py
niekdejonge 13033b5
Update test_spectrum_document.py
niekdejonge 318641c
Update test_spectrum_document.py
niekdejonge 96686af
Update README.rst
niekdejonge 3f49ee5
Moved SpecDoc with losses to own class
hechth 958d3a4
refactored tests
hechth 153e856
Added sparse array type handling and tests
hechth 69ede00
fixed warning in spec2vec test
hechth d4c706f
Added option to specify loss range and fixed test
hechth d5e0b17
lint
hechth b7d6f82
Merge remote-tracking branch 'origin/Add-loss_mz_from-and-loss_mz_to-…
hechth d65ee28
updated workflows
hechth a9b34e2
fixed documentation
hechth 728d491
updated workflow with docs
hechth e1b9c21
Merge remote-tracking branch 'cffbots/cffbots-cffconvert' into compat…
hechth bd53cf4
Merge remote-tracking branch 'origin/patch-1' into compatability-updates
hechth c40f2b8
reintroduced meta.yaml
hechth 210cfcf
removed losses from specdoc contrusctor
hechth 10c5569
refactored model serialization and building tets and added new tests …
hechth 059b84a
added test to check losses
hechth e4e9400
added test
hechth c255ad9
updated version and started working on import validation issues
hechth 5acb2eb
fixed coverage run path
hechth 6a22ce2
skip failing test case
hechth 0194a81
linting
hechth 10e34ab
linting spec2vec
niekdejonge c4c5fa6
linting test_spectrum_document
niekdejonge 8ff67ce
disable sonarcloud
niekdejonge 7c0aa29
Change python version in workflows to 3.10
niekdejonge 15d7540
added twine to workflow setup
niekdejonge c6ae6dd
Quotes around 3.10 to prevent bug
niekdejonge 25e1ba0
Remove scale
niekdejonge d707b3a
Remove cd readthedocs in workflow
niekdejonge 3d52b18
move show pip list
niekdejonge f90f215
fixed doc building
hechth e2acd4d
updated conda envrionment to reflect poetry and updated CI
hechth abb733d
updated coumentation build
hechth e06e83d
changed meta.yaml version to current version
hechth dcab69a
switched to local build
hechth fe55d13
updated python version
hechth 4ec0a58
updated build deps
hechth f249916
updated CI
hechth eb54db5
revert py dep
hechth 52c58af
add poetry to host
hechth 1f0c04e
Update gensim, matchms and Python
julianpollmann 202da9b
Bumped Version + updated Changelog
julianpollmann 2dc5b31
Fix conda build dependencies + channel order
julianpollmann ef11b49
Enable SonarQube Scan
julianpollmann File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| name: cffconvert | ||
|
|
||
| on: | ||
| push: | ||
| paths: | ||
| - CITATION.cff | ||
|
|
||
| jobs: | ||
| validate: | ||
| name: "validate" | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out a copy of the repository | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: Check whether the citation metadata from CITATION.cff is valid | ||
| uses: citation-file-format/[email protected] | ||
| with: | ||
| args: "--validate" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,21 +5,11 @@ on: | |
| types: [published] | ||
|
|
||
| jobs: | ||
| publish: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v1 | ||
| with: | ||
| python-version: 3.7 | ||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install setuptools wheel twine | ||
| python setup.py sdist bdist_wheel | ||
| - name: Publish package | ||
| uses: pypa/gh-action-pypi-publish@release/v1 | ||
| with: | ||
| user: __token__ | ||
| password: ${{ secrets.PYPI_TOKEN }} | ||
| - uses: actions/checkout@v4 | ||
| - name: Build and publish to pypi | ||
| uses: JRubics/[email protected] | ||
| with: | ||
| pypi_token: ${{ secrets.PYPI_TOKEN }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,4 +5,4 @@ dependencies: | |
| - anaconda-client | ||
| - conda-build | ||
| - conda-verify | ||
| - python >=3.7 | ||
| - python >=3.10 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.