-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
DEPS: Drop Python 3.4 support #16303
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16303 +/- ##
==========================================
- Coverage 90.39% 90.37% -0.02%
==========================================
Files 161 161
Lines 50863 50863
==========================================
- Hits 45977 45968 -9
- Misses 4886 4895 +9
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #16303 +/- ##
==========================================
- Coverage 90.38% 90.36% -0.03%
==========================================
Files 161 161
Lines 50916 50916
==========================================
- Hits 46021 46009 -12
- Misses 4895 4907 +12
Continue to review full report at Codecov.
|
so we have a couple of circle ci jobs which test 3.4 move these to 3.6 i think. (they still hit a case which we need to test). |
@jreback : Good catch. Copied and pasted the |
78edc13
to
9f9389d
Compare
c628c2d
to
1b3ec7c
Compare
@jreback : Everything is green here, but I presume you are waiting to merge this until AFTER |
@gfyoung no, we can merge things for 0.21.0 now. @jorisvandenbossche had an objection. I actually have no problem with this. yes its not hard to support. But 3.4 is not very well supported by conda anymore, no point in us holding out the torch. |
@jreback : So is this good to go then? |
ci/requirements-3.6.run
Outdated
@@ -14,7 +14,7 @@ html5lib | |||
jinja2 | |||
sqlalchemy | |||
pymysql | |||
feather-format | |||
# feather-format (not available on defaults ATM) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, the 3.6 run specially uses conda-forge (this is the only run that does this)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So just change the comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert the change
you shouldn't be changing this file
it's for the travis build
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Circle broke when i left the file as is. Couldn't install feather.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
u need a separate file (and a different job tag)
also ok to just have 3 circle jobs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, okay. That's works. Will do then.
@jreback : Made the requested changes, and everything is still green. PTAL. |
circle.yml
Outdated
@@ -23,9 +23,9 @@ dependencies: | |||
0) | |||
sudo apt-get install language-pack-it && ./ci/install_circle.sh JOB="2.7_COMPAT" LOCALE_OVERRIDE="it_IT.UTF-8" ;; | |||
1) | |||
sudo apt-get install language-pack-zh-hans && ./ci/install_circle.sh JOB="3.4_SLOW" LOCALE_OVERRIDE="zh_CN.UTF-8" ;; | |||
sudo apt-get install language-pack-zh-hans && ./ci/install_circle.sh JOB="3.6_SLOW" LOCALE_OVERRIDE="zh_CN.UTF-8" ;; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actuall let's name these
3.6_LOCALE_SLOW
3.6_LOCALE
I think it more consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good. Done.
@jreback : Made the requested changes, and everything is still green. PTAL. |
ci/requirements-3.6_SLOW.build
Outdated
@@ -0,0 +1,6 @@ | |||
python=3.6* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems you added a 3.6_SLOW, pls remove.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops. Done.
@jreback : Made the requested changes, and everything is still green. PTAL. |
thanks! |
* upstream/master: (48 commits) BUG: Categorical comparison with unordered (pandas-dev#16339) ENH: Adding 'protocol' parameter to 'to_pickle'. PERF: improve MultiIndex get_loc performance (pandas-dev#16346) TST: remove pandas-datareader xfail as 0.4.0 works (pandas-dev#16374) TST: followup to pandas-dev#16364, catch errstate warnings (pandas-dev#16373) DOC: new oauth token TST: Add test for clip-na (pandas-dev#16369) ENH: Draft metadata specification doc for Apache Parquet (pandas-dev#16315) MAINT: Add .iml to .gitignore (pandas-dev#16368) BUG/API: Categorical constructor scalar categories (pandas-dev#16340) ENH: Provide dict object for to_dict() pandas-dev#16122 (pandas-dev#16220) PERF: improved clip performance (pandas-dev#16364) DOC: try new token for docs DOC: try with new secure token DOC: add developer section to the docs DEPS: Drop Python 3.4 support (pandas-dev#16303) DOC: remove credential helper DOC: force fetch on build docs DOC: redo dev docs access token DOC: add dataframe construction in merge_asof example (pandas-dev#16348) ...
* DEPS: Drop Python 3.4 support Closes pandas-devgh-15251. * TST: Patch locale failure on Circle
* DEPS: Drop Python 3.4 support Closes pandas-devgh-15251. * TST: Patch locale failure on Circle
Title is self-explanatory.
Closes #15251.