diff --git a/.github/workflows/run_renate.yml b/.github/workflows/run_renate.yml index 88013038..d8fcfab0 100644 --- a/.github/workflows/run_renate.yml +++ b/.github/workflows/run_renate.yml @@ -41,16 +41,15 @@ jobs: role-session-name: integtestsession aws-region: ${{ env.AWS_DEFAULT_REGION }} - uses: actions/checkout@v3 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.9 cache: 'pip' - name: Install Renate run: | python -m pip install --upgrade pip - python -m pip install -e '.' - python -m pip install pytest avalanche-lib + python -m pip install -e '.[dev]' - name: Run optional custom command if: ${{ inputs.additional-command != '' }} run: ${{ inputs.additional-command }} diff --git a/pyproject.toml b/pyproject.toml index ca91ecb1..d8a71946 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,10 +19,12 @@ dynamic = ["version", "readme", "dependencies"] [project.optional-dependencies] avalanche = [ "avalanche_lib==0.3.1", + "torch>=1.10.0, <1.12.2", ] dev = [ "black==23.1.0", "avalanche_lib==0.3.1", + "torch>=1.10.0, <1.12.2", # PyTest Dependencies "pytest==7.2.2", "pytest-cov==4.0.0", diff --git a/requirements.txt b/requirements.txt index d8b5f150..ff626d22 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ numpy>=1.17.2, <1.24.2 -torch>=1.10.0, <1.12.2 +torch>=1.10.0, <1.13.2 pandas>=1.4.0, <1.5.3 boto3>=1.26.0, <1.26.116 requests>=2.28.0, <2.28.2