Skip to content

Commit 1c58b6a

Browse files
authored
Merge pull request #17 from bugout-dev/fix-required-python
Required Python >= 3.6
2 parents 68171a4 + a994beb commit 1c58b6a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bugout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
__email__ = "engineering@bugout.dev"
99
__license__ = "MIT"
10-
__version__ = "0.1.3"
10+
__version__ = "0.1.4"
1111

1212
__all__ = (
1313
"__author__",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"Topic :: Software Development :: Libraries",
3636
"Topic :: Software Development :: Libraries :: Python Modules",
3737
],
38-
python_requires=">=3.8",
38+
python_requires=">=3.6",
3939
packages=find_packages(),
4040
package_data={"bugout": ["py.typed"]},
4141
zip_safe=False,

0 commit comments

Comments
 (0)