Skip to content

Commit

Permalink
change to only use py 3.8 and 3.9 and v3 py setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kenzaxtazi committed Sep 7, 2023
1 parent 22dc9ce commit b5f756a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
strategy:
matrix:
# # Run in all these versions of Python
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.8, 3.9] # 3.5, 3.6, 3.7,

steps:
# Checkout the latest code from the repo
- name: Checkout repo
uses: actions/checkout@v3
# Setup which version of Python to use
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3 # changes this to v3 from v2 for same node12 node16 error
with:
python-version: ${{ matrix.python-version }}
# Display the Python version being used
Expand Down

0 comments on commit b5f756a

Please sign in to comment.