Skip to content

Commit 9e4a1ea

Browse files
authored
Merge pull request #246 from chrisr3d/master
Updated supported python versions
2 parents 83245cc + 1885714 commit 9e4a1ea

5 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/python-ci-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
13+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1414
exclude:
15-
- os: windows-latest
16-
python-version: '3.8'
17-
- os: windows-latest
18-
python-version: '3.9'
1915
- os: windows-latest
2016
python-version: '3.10'
2117
- os: windows-latest
2218
python-version: '3.11'
19+
- os: windows-latest
20+
python-version: '3.12'
21+
- os: windows-latest
22+
python-version: '3.13'
2323

2424
name: Python ${{ matrix.python-version }} Build
2525
steps:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.0
2+
current_version = 3.2.1
33
commit = True
44
tag = True
55

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,19 @@ def get_version():
3535
url="https://github.com/oasis-open/cti-stix-validator",
3636
author='OASIS Cyber Threat Intelligence Technical Committee',
3737
author_email='cti-users@lists.oasis-open.org',
38+
python_requires=">=3.10",
3839
maintainer='Chris Lenk',
3940
maintainer_email='clenk@mitre.org',
4041
classifiers=[
4142
'Development Status :: 4 - Beta',
4243
'Topic :: Security',
4344
'License :: OSI Approved :: BSD License',
4445
'Programming Language :: Python :: 3',
45-
'Programming Language :: Python :: 3.8',
46-
'Programming Language :: Python :: 3.9',
4746
'Programming Language :: Python :: 3.10',
4847
'Programming Language :: Python :: 3.11',
49-
'Programming Language :: Python :: 3.12'
48+
'Programming Language :: Python :: 3.12',
49+
'Programming Language :: Python :: 3.13',
50+
'Programming Language :: Python :: 3.14'
5051
],
5152
keywords="stix stix2 json validation validator stix-validator stix2-validator",
5253
project_urls={

stix2validator/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.2.0"
1+
__version__ = "3.2.1"

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,py311,py312,packaging,pre-commit-check
2+
envlist = py310,py311,py312,py313,py314,packaging,pre-commit-check
33

44
[testenv]
55
deps =
@@ -33,8 +33,8 @@ addopts = --ignore local/
3333

3434
[gh-actions]
3535
python =
36-
3.8: py38
37-
3.9: py39
3836
3.10: py310
39-
3.11: py311, packaging, pre-commit-check
37+
3.11: py311
4038
3.12: py312
39+
3.13: py313
40+
3.14: py314, packaging, pre-commit-check

0 commit comments

Comments
 (0)