Merge pull request #553 from jweissm/test_harness

Test harness update
pull/1/head
Emily Ratliff 2022-08-02 10:54:59 -05:00 committed by GitHub
commit 20bef319a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10']
name: Python ${{ matrix.python-version }} Build
steps:

View File

@ -38,14 +38,14 @@ setup(
'Topic :: Security',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'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',
],
keywords='stix stix2 json cti cyber threat intelligence',
packages=find_packages(exclude=['*.test', '*.test.*']),
python_requires='>=3.6',
python_requires='>=3.7',
install_requires=[
'pytz',
'requests',

View File

@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,packaging,pre-commit-check
envlist = py37,py38,py39,py310,packaging,pre-commit-check
[testenv]
deps =
@ -32,7 +32,7 @@ commands =
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39, packaging, pre-commit-check
3.10: py310