diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 1a0ff605e..122cb0111 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index 8233bbc9d..9f31063ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" @@ -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" ] diff --git a/pyproject.toml b/pyproject.toml index 9db00b77d..401944342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]