Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 25 additions & 5 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,35 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-10.15]
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
os: [ubuntu-latest, windows-latest, macOS-latest]
python-version: [ 3.11, 3.12, 3.13 ]
include:
- os: ubuntu-22.04
python-version: '3.10'
- os: ubuntu-22.04
python-version: '3.9'
- os: ubuntu-22.04
python-version: '3.8'

- os: macos-latest
python-version: '3.10'
- os: macos-latest
python-version: '3.9'
- os: macos-latest
python-version: '3.8'

- os: windows-latest
python-version: '3.10'
- os: windows-latest
python-version: '3.9'
- os: windows-latest
python-version: '3.8'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python version ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install pytest
run: |
python -m pip install --upgrade pip
Expand Down
9 changes: 9 additions & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
Release notes
=============
3.0.9
------

- Supported python versions updated

3.0.8
------

- Sparky peak list bug fixed

3.0.7
------
Expand Down
2 changes: 1 addition & 1 deletion pybmrb/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__= '3.0.8'
__version__= '3.0.9'
4 changes: 2 additions & 2 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.0.8
3.0.9
------

- Sparky peak list bug fixed
- Supported python versions updated
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_version():
version=get_version(),
packages=['pybmrb'],
install_requires=['pandas', 'requests>=2.21.0,<=3', 'plotly>=4.1.0', 'pynmrstar>=3.0.4', 'numpy>1.15'],
python_requires='>=3.6',
python_requires='>=3.7',
author='Kumaran Baskaran',
author_email='baskaran@uchc.edu',
description='PyBMRB provides tools for visualizing BMRB entries and NMR-STAR files. '
Expand All @@ -41,10 +41,12 @@ def get_version():
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
Expand Down
Loading