Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for twine (0.01 sec)

  1. ci/official/containers/ml_build_arm64/requirements.txt

    portpicker==1.6.0
    # For wheel verification, and uploading
    auditwheel ~= 6.1.0
    twine ~= 6.1.0
    
    # uv is faster than pip for installing Python packages.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri May 02 16:02:16 UTC 2025
    - 162 bytes
    - Viewed (0)
  2. ci/official/containers/ml_build_arm64/setup.python.sh

    # For Python 3.13t, do not install twine as it does not have pre-built wheels
    # for this Python version and building it from source fails. We only need twine
    # to be present on the system Python which in this case is 3.12.
    if [[ ${VERSION} == "python3.13-nogil" || ${VERSION} == "python3.14" || ${VERSION} == "python3.14-nogil" ]]; then
      grep -v "twine" $REQUIREMENTS > requirements_without_twine.txt
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 01 19:14:43 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  3. ci/official/containers/ml_build/setup.python.sh

    
    # For Python 3.13t, do not install twine as it does not have pre-built wheels
    # for this Python version and building it from source fails. We only need twine
    # to be present on the system Python which in this case is 3.12.
    # Same reason for Python 3.14.
    if [[ ${VERSION} == "python3.13-nogil" || ${VERSION} == "python3.14" || ${VERSION} == "python3.14-nogil" ]]; then
      grep -v "twine" $REQUIREMENTS > requirements_without_twine.txt
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 01 02:44:57 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. ci/official/containers/ml_build/builder.requirements.txt

    # For wheel verification, and uploading
    auditwheel ~= 6.1.0
    twine ~= 6.1.0
    id
    urllib3
    requests
    
    # For JAX
    build ~= 1.2.2
    # uv is faster than pip for installing Python packages.
    uv ~= 0.5.30
    
    # For running wheel verification script
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri May 02 16:02:16 UTC 2025
    - 253 bytes
    - Viewed (0)
  5. ci/official/utilities/setup_macos.sh

      python --version
    fi
    
    # TFCI Mac VM images do not have twine installed by default so we need to
    # install it manually. We use Twine in nightly builds to upload Python packages
    # to PyPI.
    if [[ "$TFCI_MACOS_TWINE_INSTALL_ENABLE" == 1 ]]; then
      pip install twine==3.6.0
    fi
    
    # When cross-compiling with RBE, we need to copy the macOS sysroot to be
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Jun 23 23:03:02 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. .github/workflows/arm-cd.yml

            if: github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v2')) # only if it is a scheduled nightly or tagged
            shell: bash
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Sep 01 15:40:11 UTC 2025
    - 3K bytes
    - Viewed (0)
  7. ci/official/upload.sh

      # GCS does not support symlinks.
      gsutil -m rsync -d -r "$FINAL_URI" "$TFCI_ARTIFACT_LATEST_GCS_URI"
    fi
    
    if [[ "$TFCI_ARTIFACT_FINAL_PYPI_ENABLE" == 1 ]]; then
      twine upload $TFCI_ARTIFACT_FINAL_PYPI_ARGS "$DOWNLOADS"/*.whl
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Mar 04 22:39:12 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  8. cmd/iam-object-store_test.go

    			"policydb/sts-users/", "uid=slash/user,ou=people,ou=swengg,dc=min,dc=io.json",
    		},
    		{
    			"policydb/sts-users/uid=slash/user/twice,ou=people,ou=swengg,dc=min,dc=io.json", true,
    			"policydb/sts-users/", "uid=slash/user/twice,ou=people,ou=swengg,dc=min,dc=io.json",
    		},
    		{
    			"policydb/groups/cn=project/d,ou=groups,ou=swengg,dc=min,dc=io.json", true,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Oct 10 23:40:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

    ## Type annotation vs `Depends` { #type-annotation-vs-depends }
    
    Notice how we write `CommonQueryParams` twice in the above code:
    
    //// tab | Python 3.8+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.8+ non-Annotated
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/QueueTestSuiteBuilder.java

      /**
       * Specify whether to skip the general collection tests. Call this method when testing a
       * collection that's both a queue and a list, to avoid running the common collection tests twice.
       * By default, collection tests do run.
       */
      @CanIgnoreReturnValue
      public QueueTestSuiteBuilder<E> skipCollectionTests() {
        runCollectionTests = false;
        return this;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top