Skip to content

Commit

Permalink
Removed references to python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dougollerenshaw committed Oct 9, 2024
1 parent 69b61b8 commit b78a269
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10']
python-version: [3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand All @@ -32,4 +32,4 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y xvfb
xvfb-run -a pytest -v tests/ui/test_chat_window.py || echo "UI tests failed but continuing"
xvfb-run -a pytest -v tests/ui/test_chat_window.py || echo "UI tests failed but continuing"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ https://github.com/user-attachments/assets/8aa729ff-c431-4a61-a9ef-d17050a27d02

2. Create a Conda environment:
```
conda create -n codeaide python=3.8
conda create -n codeaide python=3.11
conda activate codeaide
```

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
python_requires=">=3.9",
)

0 comments on commit b78a269

Please sign in to comment.