Skip to content
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: 1 addition & 3 deletions .github/workflows/slycot-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ jobs:
- 'ubuntu'
- 'macos'
python:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
bla_vendor: [ 'unset' ]
include:
- os: 'ubuntu'
Expand Down Expand Up @@ -143,7 +142,6 @@ jobs:
- 'macos'
- 'windows'
python:
- '3.6'
- '3.9'

steps:
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ requirements:
- {{ compiler('fortran') }} # [not win]
- {{ compiler('c') }}
- cmake
- flang # [win]
- flang >=11 # [win]

host:
# Always build against NETLIB ('Generic') LAPACK/Blas
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
except ImportError:
raise ImportError('scikit-build must be installed before running setup.py')

if sys.version_info[0:2] < (3, 6):
raise RuntimeError("Python version >= 3.6 required.")

DOCLINES = __doc__.split("\n")

CLASSIFIERS = """\
Expand All @@ -37,10 +34,10 @@
Programming Language :: C
Programming Language :: Fortran
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development
Topic :: Scientific/Engineering
Operating System :: Microsoft :: Windows
Expand Down Expand Up @@ -243,6 +240,7 @@ def setup_package():
'-DFULL_VERSION=' + VERSION + '.git' + gitrevision[:7]],
zip_safe=False,
install_requires=['numpy'],
python_requires=">=3.7"
)

try:
Expand Down