From 405929da8faf336c75a1fff22d616adf4b8d42ef Mon Sep 17 00:00:00 2001 From: Bruno Lange Date: Fri, 10 Nov 2023 16:25:42 -0800 Subject: [PATCH] Drops testing on 3.5 and 3.6 --- .github/workflows/pythonpackage.yml | 2 +- setup.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 10f21fd..2433964 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ] + python-version: [ '3.7', '3.8', '3.9', '3.10' ] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 994830f..365c4b1 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ -from setuptools import setup from os import path +from setuptools import setup + with open("requirements.txt") as handle: requirements = handle.readlines() @@ -10,7 +11,7 @@ setup( name="artifax", - version="0.5", + version="0.6", packages=["artifax"], description="python package for building artifacts from a computational graph", long_description=long_description, @@ -19,6 +20,6 @@ author_email="blangeram@gmail.com", url="https://github.com/brunolange/artifax", install_requires=requirements, - python_requires=">=3.5", + python_requires=">=3.7", extras_require={"dev": ["pylint"]}, )