Skip to content

Commit

Permalink
Merge pull request #164 from spdx/bump-py-version-to-3.9-in-CI
Browse files Browse the repository at this point in the history
Bump python version to 3.9 in GH Action CI
  • Loading branch information
jspeed-meyers authored Nov 30, 2023
2 parents 122be4c + 1196d26 commit ff34b39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
# use --pre flag to enable use of prerelease package versions
pipenv install --pre
pipenv install
pipenv install pytest coverage
- name: Test with pytest
env:
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spdx-tools = '0.8.2'
[dev-packages]

[requires]
python_version = "3.8"
python_version = "3.9"

[pipenv]
allow_prereleases = true

0 comments on commit ff34b39

Please sign in to comment.