Skip to content

Commit

Permalink
chore: Try Python 3.11 in GitHub actions
Browse files Browse the repository at this point in the history
fix: Set Python versions as strings
chore: Remove numpy installation from Dockerfile
  • Loading branch information
lRomul committed Jun 18, 2023
1 parent 382dcdb commit 768a41e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, 3.10]
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false

steps:
Expand Down
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /var/cache/apt/archives/*

RUN pip3 install --no-cache-dir numpy==1.25.0

# Install PyTorch
RUN pip3 install --no-cache-dir \
torch==2.0.1 \
Expand Down

0 comments on commit 768a41e

Please sign in to comment.