removing py 3.6, adding 3.9 for ci

This commit is contained in:
Shirshanka Das 2021-02-07 10:58:02 -08:00 committed by Shirshanka Das
parent 7b12fc9827
commit 024745bcc4
2 changed files with 2 additions and 3 deletions

View File

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: [3.6, 3.7, 3.8] python-version: [3.7, 3.8, 3.9]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@ -36,7 +36,6 @@ setuptools.setup(
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Intended Audience :: Developers", "Intended Audience :: Developers",
@ -50,7 +49,7 @@ setuptools.setup(
"Environment :: MacOS X", "Environment :: MacOS X",
"Topic :: Software Development", "Topic :: Software Development",
], ],
python_requires=">=3.6", python_requires=">=3.7",
package_dir={"": "src"}, package_dir={"": "src"},
packages=["gometa", "gometa.configuration"],#TODO: Are these the right components? packages=["gometa", "gometa.configuration"],#TODO: Are these the right components?
include_package_data=True, include_package_data=True,