Looks like github actions removed python 3.6 support... moving to 3.7 minimum.

This commit is contained in:
Josh Miklos
2022-11-05 22:25:10 -07:00
parent c0d6a70dfb
commit 8f9ae47533
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
python-version: [3.6, 3.7]
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v1

View File

@ -25,7 +25,7 @@ setup(
name="displayarray",
version="1.3.1",
description="Tool for displaying numpy arrays.",
python_requires="==3.*,>=3.6.0",
python_requires="==3.*,>=3.7.0",
project_urls={"repository": "https://github.com/simleek/displayarray"},
author="SimLeek",
author_email="simulator.leek@gmail.com",