Skip to content

Commit

Permalink
Merge pull request #703 from github/update-fixture-pipfile
Browse files Browse the repository at this point in the history
Update Pipfile to make test compatible with Python version in CI
  • Loading branch information
lumaxis authored Mar 18, 2024
2 parents 9a1f749 + ed2e4bf commit 364ae59
Show file tree
Hide file tree
Showing 3 changed files with 586 additions and 351 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,12 +337,15 @@ jobs:
pipenv:
runs-on: ubuntu-latest
needs: core
strategy:
matrix:
python: [ '3.8', '3.10', '3.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: ${{ matrix.python }}
architecture: x64
cache: pipenv
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/pipenv/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ verify_ssl = true

[packages]
beautifulsoup4 = "==4.7.1"
dataclasses = {version = "==0.6",markers = "python_version < '3.7.0'"}
dataclasses = "==0.6"
pylint = "==2.3.1"
datadog = "==0.44.0"
nbconvert = "==7.1.0"
Loading

0 comments on commit 364ae59

Please sign in to comment.