Skip to content

Commit

Permalink
Updated requirements and github actions Python version.
Browse files Browse the repository at this point in the history
  • Loading branch information
adocquin committed May 16, 2023
1 parent b97d8d3 commit 8ad3e29
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/code-style-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11.3'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main-unit-testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python 3.11.3
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11.3'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: "3.10.8"
python-version: "3.11.3"
- name: Install pypa/build
run: >-
python -m
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ __pycache__
.python-version
.pytest_cache
.metals
.DS_Store
cb_model.onnx
encoding.json
htmlcov
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plotly>=5.11.0
nbformat>=5.7.0
ipython>=8.6.0
openrouteservice>=2.3.3
statsmodels>=0.14.0
pytest-cov>=4.0.0
black>=22.10.0
pylint>=2.15.5
Expand Down

0 comments on commit 8ad3e29

Please sign in to comment.