Skip to content
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

CI and version string bump for v0.5.1 #149

Merged
merged 10 commits into from
Aug 1, 2024
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
9 changes: 9 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ environment:
matrix:
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.8
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.9
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: "3.10"
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.11
MINICONDA: C:\Miniconda3


init:
- ECHO %PYTHON_VERSION% %MINICONDA%
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: tests

on:
push:
paths-ignore:
- "README.md"
- "docs/**"
- "CHANGELOG.md"

pull_request:
paths-ignore:
- "README.md"
- "docs/*"
- "CHANGELOG.md"

jobs:
build_biopandas:
runs-on: ubuntu-latest
# https://github.com/marketplace/actions/setup-miniconda#use-a-default-shell
defaults:
run:
shell: bash -l {0}

strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# See: https://github.com/marketplace/actions/setup-miniconda
- name: Setup miniconda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
miniforge-variant: Mambaforge
conda-channels: conda-forge
python-version: ${{ matrix.python-version }}
use-mamba: true
- name: Install BioPandas
run: pip install -e .
- name: Install Dev Dependencies
run: pip install mmtf-python numpy scipy pandas pytest looseversion importlib_resources
- name: Run unit tests and generate coverage report
run: pytest -s -v
2 changes: 1 addition & 1 deletion biopandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#

__version__ = "0.5.1dev"
__version__ = "0.5.1"
__author__ = "Sebastian Raschka <[email protected]>"
Loading
Loading