Skip to content

Commit dbcad55

Browse files
committed
Support python version 3.10+. Resolves #7
1 parent 56048cd commit dbcad55

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/pypi_release.yml

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

1616
strategy:
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11"]
18+
python-version: ["3.10", "3.11"]
1919

2020
steps:
2121
- name: Checkout Code

aicodebot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.12.0"
1+
version = "0.12.1"

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
if __name__ == "__main__": # Only run setup if this is the main file (allows this file to be imported for __version__)
1414
setup(
1515
name="aicodebot",
16-
python_requires=">=3.9",
16+
python_requires=">=3.10",
1717
version=version,
1818
url="https://github.com/gorillamania/AICodeBot",
1919
author="Nick Sullivan",
2020
description="AI-powered tool for developers, simplifying coding tasks and improving workflow efficiency.",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",
23-
keywords="AI, coding, assistant, pair-programming, automation",
23+
keywords="AI, coding, assistant, pair-programming, automation, productivity, workflow, artificial intelligence",
2424
install_requires=requirements,
2525
entry_points={
2626
"console_scripts": [
@@ -31,11 +31,10 @@
3131
"aicodebot": ["prompts/*.yaml", ".aicodebot.template"],
3232
},
3333
classifiers=[
34-
"Development Status :: 3 - Alpha",
34+
"Development Status :: 4 - Beta",
3535
"Intended Audience :: Developers",
3636
"License :: OSI Approved :: GNU Affero General Public License v3",
3737
"Programming Language :: Python :: 3",
38-
"Programming Language :: Python :: 3.9",
3938
"Programming Language :: Python :: 3.10",
4039
"Programming Language :: Python :: 3.11",
4140
],

0 commit comments

Comments
 (0)