Skip to content

Commit

Permalink
upgrade python version in workflow (#53)
Browse files Browse the repository at this point in the history
* upgrade python workflow version to py3.9 and py 3.10
  • Loading branch information
LeonieFreisinger authored May 4, 2023
1 parent 502869e commit 7d707e3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.10"]
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Install Python ${{ matrix.python-version }}
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -e .
pip3 install -e ".[dev]"
pip3 install pytest
pip3 install pytest-cov
- name: Pytest
Expand Down
9 changes: 4 additions & 5 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
dataclasses>=0.6;python_version<'3.7'
neuralprophet>=0.3.2
numpy>=1.15.4
pandas>=1.0.4
darts>= 0.23.1
arrow>=1.2.3
neuralprophet>=1.0.0rc1
numpy>=1.22.0,<1.24.0
pandas>=1.3.5
arrow
14 changes: 7 additions & 7 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
black[jupyter]
flake8
isort
flake8>=5.0.4, <6.0.0
isort>=5.11.5, <6.0.0
pyright
pytest>=6.2.3
pytest-cov
sphinx>=4.2.0
twine
wheel
pytest>=7.2.2, <8.0.0
pytest-cov>=4.0.0, <5.0.0
u8darts[torch]>= 0.23.1


0 comments on commit 7d707e3

Please sign in to comment.