Skip to content

ENH: Use tz-aware dtype for timestamp columns #263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update min pandas to 0.24.0
  • Loading branch information
tswast committed Apr 3, 2019
commit a5a11abad5dee3c7c2e004fbdd93774ab2867423
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
- run: nox -s lint

# Conda
"conda-3.6-0.23.0":
"conda-3.6-0.24.0":
docker:
- image: continuumio/miniconda3
environment:
PYTHON: "3.6"
PANDAS: "0.23.0"
PANDAS: "0.24.0"
steps:
- checkout
- run: ci/config_auth.sh
Expand All @@ -65,4 +65,4 @@ workflows:
- "pip-3.6"
- "pip-3.7"
- lint
- "conda-3.6-0.23.0"
- "conda-3.6-0.24.0"
2 changes: 1 addition & 1 deletion ci/requirements-2.7.pip
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mock
pandas==0.23.0
pandas==0.24.0
google-auth==1.4.1
google-auth-oauthlib==0.0.1
google-cloud-bigquery==1.9.0
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-3.5.pip
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas==0.23.0
pandas==0.24.0
google-auth==1.4.1
google-auth-oauthlib==0.0.1
google-cloud-bigquery==1.9.0
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Dependency updates

- Update the minimum version of ``google-cloud-bigquery`` to 1.9.0.
(:issue:`247`)
- Update the minimum version of ``pandas`` to 0.23.0. (:issue:`263`)
- Update the minimum version of ``pandas`` to 0.24.0. (:issue:`263`)

Internal changes
~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def readme():

INSTALL_REQUIRES = [
"setuptools",
"pandas>=0.23.0",
"pandas>=0.24.0",
"pydata-google-auth",
"google-auth",
"google-auth-oauthlib",
Expand Down