Skip to content

Commit 91bd6a2

Browse files
authored
Update main.yml
1 parent 3f25ddf commit 91bd6a2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
strategy:
3939
matrix:
4040
#python-version: [3.9] # testing
41-
python-version: [3.7, 3.8, 3.9] # TODO: should be enabled...disabled for testing...
41+
# TODO: should be enabled...disabled for testing...
42+
python-version: ['3.10', '3.11', '3.12', '3.13']
4243
os: [windows-latest]
4344
# , macos-latest, windows-latest
4445
mode: ['latest', 'latest_colorama'] # , 'windows-latest_colorama'
@@ -48,7 +49,7 @@ jobs:
4849
# Steps represent a sequence of tasks that will be executed as part of the job
4950
steps:
5051
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
51-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v3
5253

5354
- name: Print environment variables exposed by GitHub
5455
run: |
@@ -87,7 +88,8 @@ jobs:
8788
- name: Install dependencies
8889
run: |
8990
pip install codecov
90-
python setup.py develop
91+
pip install -e .
92+
#python setup.py develop
9193
9294
- name: List dependencies
9395
run: |

0 commit comments

Comments
 (0)