Skip to content

Commit

Permalink
Move package requirements to python >= 3.9 and specifically exclude p…
Browse files Browse the repository at this point in the history
…p38 from wheel buildling
  • Loading branch information
chad-earthscope committed Jun 14, 2024
1 parent 778ae02 commit df17bd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: pypa/cibuildwheel@v2.18.1
env:
# Skip older python's to prevent things like: https://github.com/pypa/cibuildwheel/issues/1828
CIBW_SKIP: cp36-* cp37-* cp38-*
CIBW_SKIP: cp36-* cp37-* cp38-* pp38-*

# Specify native archs ('auto') and additional architectures using emulation
CIBW_ARCHS_LINUX: auto aarch64
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
{ name = "EarthScope Data Services", email = "software@earthscope.org" },
]
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = ["seismology", "miniseed", "mseed", "data", "waveform", "seismic"]
license = { text = "Apache-2.0" }
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion src/mseedlib/msrecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class MS3Record(ct.Structure):
"""A miniSEED record base class based on libmseed's MS3Record structure"""
"""A miniSEED record base class mirroring libmseed's MS3Record structure"""
_fields_ = [('_record', ct.POINTER(ct.c_char)), # Raw miniSEED record, if available
('_reclen', ct.c_int32), # Length of miniSEED record in bytes
('_swapflag', ct.c_uint8), # Byte swap indicator (bitmask)
Expand Down

0 comments on commit df17bd6

Please sign in to comment.