Skip to content

Commit

Permalink
update python versions to 3.8-3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
rpiazza committed Mar 14, 2024
1 parent 7d7104a commit f5ae979
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,15 @@ def get_long_description():
'Topic :: Security',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='stix stix2 json cti cyber threat intelligence',
packages=find_packages(exclude=['*.test', '*.test.*']),
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
'pytz',
'requests',
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[tox]
envlist = py37,py38,py39,py310,packaging,pre-commit-check
envlist = py38,py39,py310,py311,py312,packaging,pre-commit-check

[testenv]
deps =
-U
tox
pytest
pytest-cov
Expand Down Expand Up @@ -32,7 +31,8 @@ commands =

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39, packaging, pre-commit-check
3.9: py39
3.10: py310
3.11: py311, packaging, pre-commit-check
3.12: py312

0 comments on commit f5ae979

Please sign in to comment.