Skip to content

Commit

Permalink
Merge pull request #3 from shankarpandala/bugfix/python-version-bug
Browse files Browse the repository at this point in the history
Update Python version requirement
  • Loading branch information
shankarpandala authored Nov 26, 2023
2 parents 7654f86 + fa24dd1 commit a87bd93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
],
package_dir={"": "."}, # Where to find the source code
packages=find_packages(),
python_requires=">=3.6", # Minimum version requirement of Python
python_requires=">=3.9", # Minimum version requirement of Python
install_requires=[ # List of dependencies
"gitpython>=3.1.0", # Example, specify actual dependencies
"openai>=0.10.0" # For GPT-4 integration
Expand Down

0 comments on commit a87bd93

Please sign in to comment.