Skip to content

Commit

Permalink
Drops testing on 3.5 and 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
brunolange committed Nov 11, 2023
1 parent b4ee03e commit 405929d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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()

Expand All @@ -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,
Expand All @@ -19,6 +20,6 @@
author_email="[email protected]",
url="https://github.com/brunolange/artifax",
install_requires=requirements,
python_requires=">=3.5",
python_requires=">=3.7",
extras_require={"dev": ["pylint"]},
)

0 comments on commit 405929d

Please sign in to comment.