Skip to content

Commit 55c32ac

Browse files
committed
Bump py compat target to 3.8 in setup.py and CI
1 parent 5290fa0 commit 55c32ac

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-python@v4
1818
with:
1919
# matches compat target in setup.py
20-
python-version: '3.6'
20+
python-version: '3.8'
2121
- name: "Main Script"
2222
run: |
2323
curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/main/prepare-and-run-flake8.sh
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
strategy:
3030
matrix:
31-
python-version: [3.6, 3.7, 3.8]
31+
python-version: ['3.8', '3.10', '3.x']
3232
steps:
3333
- uses: actions/checkout@v3
3434
-

.github/workflows/wheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ jobs:
3434
run: python -m cibuildwheel --output-dir wheelhouse
3535
# to supply options, put them in 'env', like:
3636
env:
37-
CIBW_SKIP: "*-musllinux_i686"
38-
# CIBW_SOME_OPTION: value
37+
CIBW_SKIP: "*-musllinux_i686 cp36-* cp37-* pp37-*"
3938
- uses: actions/upload-artifact@v3
4039
with:
4140
path: ./wheelhouse/*.whl

doc/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ you really only need three basic things:
88

99
* A UNIX-like machine with web access.
1010
* A C++ compiler, preferably a Version 4.x gcc.
11-
* A working `Python <http://www.python.org>`_ installation, Version 3.6 or newer.
11+
* A working `Python <http://www.python.org>`_ installation.
1212

1313
Step 1: Download and unpack MeshPy
1414
-----------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def main():
7878

7979
packages=["meshpy"],
8080
setup_requires=["pybind11"],
81-
python_requires="~=3.6",
81+
python_requires="~=3.8",
8282
install_requires=[
8383
"pytools>=2011.2",
8484
"numpy",

0 commit comments

Comments
 (0)