Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/python-db-dtypes-pandas
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.2
Choose a base ref
Loading
...
head repository: googleapis/python-db-dtypes-pandas
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.3
Choose a head ref
Loading
  • 8 commits
  • 41 files changed
  • 5 contributors

Commits on Mar 6, 2025

  1. Configuration menu
    Copy the full SHA
    490cd61 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2025

  1. Configuration menu
    Copy the full SHA
    5eb2a85 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2025

  1. fix: remove setup.cfg configuration for creating universal wheels (#333)

    `setup.cfg` contains a setting to create a `Universal Wheel` which is only needed if libraries support both Python 2 and Python 3. This library only supports Python 3 so this setting is no longer needed. See https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#wheels.
    
    See similar PR https://togithub.com/googleapis/google-cloud-python/pull/13659 which includes this stack trace
    
    ```
          running bdist_wheel
          /tmp/pip-build-env-9o_3w17v/overlay/lib/python3.13/site-packages/setuptools/_distutils/cmd.py:135: SetuptoolsDeprecationWarning: bdist_wheel.universal is deprecated
          !!
          
                  ********************************************************************************
                  With Python 2.7 end-of-life, support for building universal wheels
                  (i.e., wheels that support both Python 2 and Python 3)
                  is being obviated.
                  Please discontinue using this option, or if you still need it,
                  file an issue with pypa/setuptools describing your use case.
          
                  By 2025-Aug-30, you need to update your project and remove deprecated calls
                  or your builds will no longer be supported.
                  ********************************************************************************
          
          !!
    ```
    parthea authored Mar 14, 2025
    Configuration menu
    Copy the full SHA
    44a5aa2 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2025

  1. chore: Update Python version to 3.13 in compliance workflow (#335)

    * Update Python version to 3.13 in compliance workflow
    
    Updates the Python version used in the matrix strategy for both the `compliance` and `compliance-prerelease` jobs in the `.github/workflows/compliance.yml` file from 3.12 to 3.13.
    
    * Update .github/workflows/compliance.yml
    
    * Update .github/workflows/compliance.yml
    
    ---------
    
    Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
    chalmerlowe and google-labs-jules[bot] authored Apr 17, 2025
    Configuration menu
    Copy the full SHA
    f091f16 View commit details
    Browse the repository at this point in the history
  2. chore: Add Python 3.13 updates for repo settings, noxfile, setup, con…

    …straints, .github (AI experiment) (#336)
    
    * feat: Add Python 3.13 updates for repo settings and Kokoro
    
    Includes additional updates for Python 3.13 support:
    
    - Adds 'unit (3.13)' to the required status checks in the repo settings file (`.github/sync-repo-settings.yaml`).
    - Populates and updates Kokoro sample configuration files in `.kokoro/samples/python3.13/` to mirror the 3.12 setup, adjusting version-specific variables.
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    ---------
    
    Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    3 people authored Apr 17, 2025
    Configuration menu
    Copy the full SHA
    d8046c0 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

  1. deps: Updates deprecation warning to FutureWarning re: 3.7 and 3.8 (#338

    )
    
    * deps: Updates deprecation warning to FutureWarning re: 3.7 and 3.8
    
    * Changes pytest flag to ignore FutureWarning re: 3.7 and 3.8
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * Changes pytest flag to ignore FutureWarning re: 3.7 and 3.8
    
    ---------
    
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    chalmerlowe and gcf-owl-bot[bot] authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    158243b View commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. deps!: Drop support for Python 3.7 and 3.8 (AI Experiment) (#337)

    * feat: Drop support for Python 3.7 and 3.8
    
    Removes support for Python 3.7 and 3.8, establishing Python 3.9 as the new minimum supported version.
    
    This change involves:
    - Updating `python_requires` and classifiers in `setup.py`.
    - Modifying Python versions in `noxfile.py` (default, unit tests, system tests) and ensuring constraint file logic remains correct.
    - Updating the GitHub Actions workflow (`unittest.yml`) matrix, runner, and coverage job version.
    - Deleting constraint files for Python 3.7 and 3.8 (`testing/constraints-3.7.txt`, `testing/constraints-3.8.txt`).
    - Removing Kokoro sample configuration directories (`.kokoro/samples/python3.7/`, `.kokoro/samples/python3.8/`).
    - Updating supported version mentions in `README.rst`.
    - Removing 3.7 and 3.8 from the `ALL_VERSIONS` list in `samples/snippets/noxfile.py`.
    
    * Updates python version in lint.yml
    
    * Updates owlbot, removing reference to 3.8
    
    * Updates CONTRIBUTING.rst
    
    * updates pytest warnings
    
    * Removes test_samples-impl ref to older virtualenv package
    
    * Removes references to pandas older than 1.5.0
    
    * Removes pandas older than 1.5 and misc changes
    
    * updates pandas in setup.py
    
    * more updates related to pandas
    
    * still broken
    
    * Updates FutureWarning tests to account for unittest coverage
    
    * Updates json array type tests to account for unittest coverage
    
    * updates python version checks to ensure coverage
    
    * update json test for unittest coverage
    
    * Update pandas_backports unittests to ensure coverage
    
    * Updates per review comments
    
    * moves class from version specific compliance file to generic file
    
    * Removes weird cut and paste error
    
    * fix linting errors
    
    * updates import statement to ensure import of JSONArrowType
    
    * Revise required github status checks
    
    * update linting
    
    * temporarily marking a class as no cover
    
    * more updates
    
    * marked several snippets as pragma no cover
    
    * updates linting
    
    * Updates constraints and setup.py
    
    * migrates class from one time compliance file to another
    
    * updating pyarrow version
    
    * Updates linting
    
    * removes determine all and module reload tests
    
    * updates re: ndarrybackedextensionarray
    
    * testing blacken as part of owlbot processing using 3.8
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * updates blacken to 3.10
    
    * update python version in lint.yml
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * updates owlbot.py
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * updates owlbot.py
    
    * testing lint.yml
    
    * testing linting issue
    
    * testing linting issue
    
    * 🦉 Updates from OwlBot post-processor
    
    See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
    
    * updates lint_setup session
    
    * Update noxfile.py
    
    ---------
    
    Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
    Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
    3 people authored May 7, 2025
    Configuration menu
    Copy the full SHA
    66f3f0b View commit details
    Browse the repository at this point in the history

Commits on May 12, 2025

  1. chore(main): release 1.4.3 (#332)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored May 12, 2025
    Configuration menu
    Copy the full SHA
    a7e18a2 View commit details
    Browse the repository at this point in the history
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.