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

No more py2 #1142

Merged
merged 7 commits into from
Oct 29, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
strategy:
matrix:
os: [ubuntu, macos]
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
exclude:
# Run only the latest 2.x and 3.x on macOS
# Run only the latest 3.x on macOS
- os: macos
python-version: 3.6
- os: macos
Expand Down
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ http://pysam.readthedocs.io/en/latest/release.html
Release notes
=============

Release 1.0.0?
==============

* python 2.7 support has been removed. The minimum python version is now 3.2 with
versions 3.6-3.11 tested.


Release 0.20.0
==============

Expand Down
1 change: 1 addition & 0 deletions pysam/libcalignedsegment.pxd
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# cython: language_level=3
from pysam.libchtslib cimport *

cdef extern from "htslib_util.h":
Expand Down
Loading