Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for TFCI_PYTHON_VERSION (0.08 sec)

  1. ci/official/utilities/setup_macos.sh

    # the other versions manually.
    if [[ "${TFCI_MACOS_PYENV_INSTALL_ENABLE}" == 1 ]]; then
      # Install the necessary Python, unless it's already present
      pyenv install -s "$TFCI_PYTHON_VERSION"
      pyenv local "$TFCI_PYTHON_VERSION"
      # Do a sanity check to make sure that we using the correct Python version
      python --version
    fi
    
    # TFCI Mac VM images do not have twine installed by default so we need to
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Jun 23 23:03:02 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. ci/official/utilities/rename_and_verify_wheels.sh

    # Quick install checks
    venv_dir=$(mktemp -d)
    if [[ $(uname -s) != MSYS_NT* ]]; then
      "python${TFCI_PYTHON_VERSION}" -m venv "$venv_dir"
      python="$venv_dir/bin/python3"
    else
      # When using the Linux-like path, venv creation quietly fails, which is
      # why it's converted here.
      venv_dir=$(cygpath -m $venv_dir)
      "/c/python${TFCI_PYTHON_VERSION}/python.exe" -m venv "$venv_dir"
      python="$venv_dir/Scripts/python.exe"
    fi
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Apr 25 00:22:38 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. ci/official/envs/linux_x86_cuda

    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_x86
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --repo_env=USE_PYWRAP_RULES=True --config release_gpu_linux"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_cuda
    TFCI_BUILD_PIP_PACKAGE_WHEEL_NAME_ARG="--repo_env=WHEEL_NAME=tensorflow"
    TFCI_DOCKER_ARGS="--gpus all"
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Feb 18 22:52:46 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. ci/official/envs/macos_arm64

    # limitations under the License.
    # ==============================================================================
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --repo_env=USE_PYWRAP_RULES=True --config release_macos_arm64"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=macos_arm64
    TFCI_BUILD_PIP_PACKAGE_WHEEL_NAME_ARG="--repo_env=WHEEL_NAME=tensorflow"
    TFCI_INDEX_HTML_ENABLE=1
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Apr 22 23:28:49 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  5. ci/official/envs/py313

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Apr 09 22:12:11 UTC 2025
    - 714 bytes
    - Viewed (0)
  6. ci/official/envs/linux_x86_tpu

    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_x86
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --config release_cpu_linux --config=tpu"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_tpu
    TFCI_BUILD_PIP_PACKAGE_WHEEL_NAME_ARG="--repo_env=WHEEL_NAME=tensorflow_tpu"
    TFCI_LIB_SUFFIX="-tpu-linux-x86_64"
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Feb 19 19:24:29 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. ci/official/envs/py311

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 714 bytes
    - Viewed (0)
  8. ci/official/envs/py39

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 713 bytes
    - Viewed (0)
  9. ci/official/envs/linux_x86

    # limitations under the License.
    # ==============================================================================
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --repo_env=USE_PYWRAP_RULES=True --config release_cpu_linux"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_cpu
    TFCI_BUILD_PIP_PACKAGE_WHEEL_NAME_ARG="--repo_env=WHEEL_NAME=tensorflow_cpu"
    TFCI_DOCKER_ENABLE=1
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Jul 16 22:21:17 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  10. ci/official/envs/linux_arm64

    # limitations under the License.
    # ==============================================================================
    TFCI_BAZEL_COMMON_ARGS="--repo_env=HERMETIC_PYTHON_VERSION=$TFCI_PYTHON_VERSION --repo_env=USE_PYWRAP_RULES=True --config release_arm64_linux"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=linux_arm64
    # Note: this is not set to "--cpu", because that changes the package name
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Jun 04 01:09:09 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top