From 7baa967aee2497a4f6df676a9000cb0f3a64958f Mon Sep 17 00:00:00 2001 From: Christian Studer Date: Wed, 24 Aug 2022 09:39:43 +0200 Subject: [PATCH 1/3] fix: [doc] Updated Python requirements --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 6249c506..c50a05b7 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Install with `pip `__: $ pip install misp-lib-stix2 -Note: The library requires Python 3.6+. +Note: The library requires Python 3.7+. Usage ----- From f09b4bf50b65bdc954d47c46c81beccf61fa9575 Mon Sep 17 00:00:00 2001 From: Christian Studer Date: Wed, 24 Aug 2022 10:52:51 +0200 Subject: [PATCH 2/3] fix: [package] Bumped latest package version --- pyproject.toml | 2 +- setup.cfg | 2 +- stix2/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2eba5357..db272c93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "misp-lib-stix2" -version = "3.0.1" +version = "3.0.1.1" description = "Produce and consume STIX 2 JSON content" authors = ["OASIS Cyber Threat Intelligence Technical Committee "] maintainers = ["OASIS Cyber Threat Intelligence Technical Committee "] diff --git a/setup.cfg b/setup.cfg index fdc0c861..cd4f2c86 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.0.1.1 commit = True tag = True diff --git a/stix2/version.py b/stix2/version.py index 5679339f..61521851 100644 --- a/stix2/version.py +++ b/stix2/version.py @@ -1,3 +1,3 @@ -__version__ = "3.0.1" +__version__ = "3.0.1.1" DEFAULT_VERSION = '2.1' # Default version will always be the latest STIX 2.X version From ed57acf391c8b5322ad4016b17830989ac2125fe Mon Sep 17 00:00:00 2001 From: Anders Einar Hilden Date: Wed, 24 Aug 2022 11:48:46 +0200 Subject: [PATCH 3/3] Don't make python2-wheel https://buildmedia.readthedocs.org/media/pdf/wheel/stable/wheel.pdf: ```` If you want to make universal (Python 2/3 compatible, pure Python) wheels, add the following section to your setup. cfg: [bdist_wheel] universal = 1 ```` --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index cd4f2c86..b01be01d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,4 +9,4 @@ tag = True license_file = LICENSE [bdist_wheel] -universal = 1 +universal = 0