Skip to content

Commit

Permalink
Revert "revert Python to 3.10 for hmmlearn" (#1900)
Browse files Browse the repository at this point in the history
Reverts #1878
  • Loading branch information
njzjz authored Apr 19, 2023
1 parent 495547a commit e259b4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
architecture: 'x64'
- run: pip install tox tox-gh-actions
- run: tox
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10 AS compile-image
FROM python:3.11 AS compile-image
RUN python -m venv /opt/venv
# Make sure we use the virtualenv
ENV PATH="/opt/venv/bin:$PATH"
Expand All @@ -7,7 +7,7 @@ COPY . /reacnetgenerator
RUN pip install /reacnetgenerator && \
reacnetgenerator -h

FROM python:3.10 AS build-image
FROM python:3.11 AS build-image
COPY --from=compile-image /opt/venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
CMD ["/bin/bash" ]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fallback_version = "Unknown"
test-command = "reacnetgenerator -h"
build = ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
skip = ["*-win32", "*-manylinux_i686", "*-musllinux*"]
test-skip = "*-win_amd64 cp311-*"
test-skip = "*-win_amd64"

[tool.cibuildwheel.linux]
environment-pass = ["CIBW_BUILD"]
Expand Down

0 comments on commit e259b4f

Please sign in to comment.