Skip to content

Commit

Permalink
update: GitHub Actions and Python version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
trombik committed Jan 29, 2023
1 parent d796328 commit 077ebf9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
- latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.8'
python-version: '3.10'

- name: Install pipenv
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install python
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: '3.10'

- name: Install pipenv
run: |
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ flake8 = "3.9.2"
black = "21.7b0"

[requires]
python_version = "3.8"
python_version = "3.10"

[pipenv]
allow_prereleases = true

0 comments on commit 077ebf9

Please sign in to comment.