Skip to content

Commit 4792eae

Browse files
committed
Drop support for python 3.9
Python 3.9 is EOL.
1 parent aefda2b commit 4792eae

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/wheels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
CIBW_ENVIRONMENT_WINDOWS: >
5454
CMAKE_GENERATOR="${{ matrix.cmake_generator }}"
5555
CMAKE_GENERATOR_PLATFORM="${{ matrix.cmake_generator_platform }}"
56-
CIBW_SKIP: cp38-* *-musllinux_*
56+
CIBW_SKIP: cp38-* cp39-* *-musllinux_*
5757
CIBW_ARCHS: ${{ matrix.arch }}
5858
run: |
5959
python -m cibuildwheel --output-dir wheelhouse python/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ To build segyio you need:
9696
* A C99 compatible C compiler (tested mostly on gcc and clang)
9797
* A C++11 compiler for the Python extension and tests
9898
* [CMake](https://cmake.org/) version 3.18 or greater
99-
* [Python](https://www.python.org/) 3.9 or greater
99+
* [Python](https://www.python.org/) 3.10 or greater
100100
* [numpy](http://www.numpy.org/) version 1.10 or greater
101101
* [pytest](https://pypi.org/project/pytest)
102102

python/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
urls.homepage = "https://github.com/equinor/segyio"
1515
license = "LGPL-3.0-or-later"
16-
requires-python = ">=3.9"
16+
requires-python = ">=3.10"
1717
dependencies = ["numpy >= 1.10"]
1818
readme = { text = """
1919
=======
@@ -66,7 +66,6 @@ classifiers = [
6666
"Intended Audience :: Science/Research",
6767
"Natural Language :: English",
6868
"Programming Language :: Python",
69-
"Programming Language :: Python :: 3.9",
7069
"Programming Language :: Python :: 3.10",
7170
"Programming Language :: Python :: 3.11",
7271
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)