Skip to content
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

FIX: remove cwd from mac font path search #12177

Merged
merged 1 commit into from
Sep 20, 2018

Conversation

tacaswell
Copy link
Member

@tacaswell tacaswell commented Sep 20, 2018

While including the cwd makes sense at first glance, it does not
because

a) the result is cached so the next time your cwd will be
different but we will not find those files
b) the time it takes to search all the files is causing problems
c) the other 2 platforms do not do this

The comma was introduced to fix what looked like a bug (implicit
string concatenation instead of adding the empty string to the list)
in #11963.

Original code come in via 4799341 in
2011.

closes #12176

@tacaswell tacaswell added this to the v3.0.x milestone Sep 20, 2018
@tacaswell
Copy link
Member Author

@dsentinel Thanks for doing the legwork to track this down!

Copy link
Member

@jklymak jklymak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems right to me. I don’t think there is any tradition of keeping fonts in a local directory on macOS.

Copy link
Member

@timhoffm timhoffm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could leave the comma still in place. It’s a good style to also add a comma to the last element of a multi-line list. It’s less error prone if an additional element is later on (if one forgets to add the comma, we have implicit string concatenation - possibly happened exactly here before). Also adding a new line does not modify the previous line, which keeps the git history slightly more clean.

Just noticed, it‘s even mentioned in pep8
When to Use Trailing Commas

@anntzer
Copy link
Contributor

anntzer commented Sep 20, 2018

Apparently you cannot "like" reviews so I'll do it in text re: @timhoffm's review :p

@dsentinel
Copy link

@dsentinel Thanks for doing the legwork to track this down!

Happy to help! Glad you came to the same conclusion.
+1 for trailing comma

While including the cwd makes sense at first glance, it does not
because

a) the result is cached so the next time your cwd will be
   different but we will not find those files
b) the time it takes to search all the files is causing prolems
c) the other 2 platforms do not do this

The comma was introduced to fix what looked like a bug (implicit
string concatenation instead of adding the empty string to the list)
in matplotlib#11963.

Original code come in via 4799341 in
2011.

closes matplotlib#12176
@tacaswell
Copy link
Member Author

comma re-instated and force-pushed.

@QuLogic QuLogic merged commit 1b66c1d into matplotlib:master Sep 20, 2018
@lumberbot-app
Copy link

lumberbot-app bot commented Sep 20, 2018

Something went wrong ... Please have a look at my logs.

@QuLogic
Copy link
Member

QuLogic commented Sep 20, 2018

@Carreau here is the error from the log:

Sep 20 21:30:58 meeseeksbot app/web.1:     [backport] == Collecting data on Pull-request... 
Sep 20 21:30:58 meeseeksbot app/web.1:     [backport] ---------------------------------------- 
Sep 20 21:30:59 meeseeksbot app/web.1:     [backport] ---------------------------------------- 
Sep 20 21:30:59 meeseeksbot app/web.1:     [backport] Attempting FF 
Sep 20 21:30:59 meeseeksbot app/web.1:     [backport] FF: Git set-url origin 
Sep 20 21:30:59 meeseeksbot app/web.1:     [backport] FF: Git fetch master 
Sep 20 21:31:01 meeseeksbot app/web.1: Traceback (most recent call last): 
Sep 20 21:31:01 meeseeksbot app/web.1:   File "/app/meeseeksdev/meeseeksbox/commands.py", line 354, in safe_backport 
Sep 20 21:31:01 meeseeksbot app/web.1:     repo.checkout("master") 
Sep 20 21:31:01 meeseeksbot app/web.1: AttributeError: 'Repo' object has no attribute 'checkout' 
Sep 20 21:31:01 meeseeksbot app/web.1:     [backport] == Fast-Forwarded 
Sep 20 21:31:01 meeseeksbot app/web.1:     [backport] == Fetching branch to backport on ... v3.0.x 
Sep 20 21:31:03 meeseeksbot app/web.1:     [backport] Something went wrong 
Sep 20 21:31:03 meeseeksbot app/web.1:     [backport] Cmd('git') failed due to: exit code(128) 
Sep 20 21:31:03 meeseeksbot app/web.1:   cmdline: git fetch -v origin refs/heads/v3.0.x:workbranch 
Sep 20 21:31:03 meeseeksbot app/web.1:   stderr: 'fatal: Refusing to fetch into current branch refs/heads/workbranch of non-bare repository' 
Sep 20 21:31:03 meeseeksbot app/web.1: ERROR:tornado.application:Uncaught exception POST /webhook (10.33.235.94) 
Sep 20 21:31:03 meeseeksbot app/web.1: HTTPServerRequest(protocol='http', host='meeseeksbot.herokuapp.com', method='POST', uri='/webhook', version='HTTP/1.1', remote_ip='10.33.235.94') 
Sep 20 21:31:03 meeseeksbot app/web.1: Traceback (most recent call last): 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/.heroku/python/lib/python3.6/site-packages/tornado/web.py", line 1590, in _execute 
Sep 20 21:31:03 meeseeksbot app/web.1:     result = method(*self.path_args, **self.path_kwargs) 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/meeseeksdev/meeseeksbox/core.py", line 228, in post 
Sep 20 21:31:03 meeseeksbot app/web.1:     return self.dispatch_action(action, payload) 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/meeseeksdev/meeseeksbox/core.py", line 390, in dispatch_action 
Sep 20 21:31:03 meeseeksbot app/web.1:     merged_by["login"], 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/meeseeksdev/meeseeksbox/core.py", line 600, in dispatch_on_mention 
Sep 20 21:31:03 meeseeksbot app/web.1:     local_config=local_config, 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/meeseeksdev/meeseeksbox/commands.py", line 419, in safe_backport 
Sep 20 21:31:03 meeseeksbot app/web.1:     repo.remotes.origin.fetch("refs/heads/{}:workbranch".format(target_branch)) 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/.heroku/python/lib/python3.6/site-packages/git/remote.py", line 789, in fetch 
Sep 20 21:31:03 meeseeksbot app/web.1:     res = self._get_fetch_info_from_stderr(proc, progress) 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/.heroku/python/lib/python3.6/site-packages/git/remote.py", line 675, in _get_fetch_info_from_stderr 
Sep 20 21:31:03 meeseeksbot app/web.1:     proc.wait(stderr=stderr_text) 
Sep 20 21:31:03 meeseeksbot app/web.1:   File "/app/.heroku/python/lib/python3.6/site-packages/git/cmd.py", line 415, in wait 
Sep 20 21:31:03 meeseeksbot app/web.1:     raise GitCommandError(self.args, status, errstr) 
Sep 20 21:31:03 meeseeksbot app/web.1: git.exc.GitCommandError: Cmd('git') failed due to: exit code(128) 
Sep 20 21:31:03 meeseeksbot app/web.1:   cmdline: git fetch -v origin refs/heads/v3.0.x:workbranch 
Sep 20 21:31:03 meeseeksbot app/web.1:   stderr: 'fatal: Refusing to fetch into current branch refs/heads/workbranch of non-bare repository' 

Seems to be some issues with switching branches prior to backporting.

@QuLogic
Copy link
Member

QuLogic commented Sep 20, 2018

Also, I just noticed in the log, it tried to trigger commands from the last comment. I guess it should try to ignore any thing in code blocks if possible.

@Carreau
Copy link
Contributor

Carreau commented Sep 20, 2018

Also, I just noticed in the log, it tried to trigger commands from the last comment. I guess it should try to ignore any thing in code blocks if possible.

Yep, I know I should fix that as well. I'll probably add the restriction that the mention should at start of line.

I've added logic to erase the repo and clone from scratch if FF does not work. It should be up in a minute or so, Like to retrigger the backport ?

@tacaswell tacaswell deleted the fix_mac_font_search branch September 20, 2018 22:07
@tacaswell
Copy link
Member Author

@meeseeksdev backport to v3.0.x

@lumberbot-app
Copy link

lumberbot-app bot commented Sep 20, 2018

Something went wrong ... Please have a look at my logs.

@tacaswell
Copy link
Member Author

@timhoffm From the verbosity of your comment I am concerned you are concerned about criticizing my code (because that reads like how I write when I am concerned about such things), please do not be!

@Carreau seems to still be broken :(

@QuLogic
Copy link
Member

QuLogic commented Sep 20, 2018

@Carreau not sure I see any new commits on https://github.com/MeeseeksBox/MeeseeksDev?

@timhoffm
Copy link
Member

@tacaswell Thanks for the feedback. I'm not concerned critizing code, I just wanted to motivate the style choice. If I had seen the PEP8 reference earlier, my comment would have been shorter 😜.

@Carreau
Copy link
Contributor

Carreau commented Sep 21, 2018

Sorry about the issues it was late locally and I had brainfart. I exceptionally gave myself ability to mention MrMeeseeks here to retry the backport and not annoy you.

@meeseeksdev backport to v3.0.x

@lumberbot-app
Copy link

lumberbot-app bot commented Sep 21, 2018

Awww, sorry Carreau you do not seem to be allowed to do that, please ask a repository maintainer.

@Carreau
Copy link
Contributor

Carreau commented Sep 21, 2018

Awww, sorry Carreau you do not seem to be allowed to do that, please ask a repository maintainer.

Well apparently I did not:-) Let's re-try.

@meeseeksdev backport to v3.0.x

meeseeksmachine pushed a commit to meeseeksmachine/matplotlib that referenced this pull request Sep 21, 2018
dstansby added a commit that referenced this pull request Sep 21, 2018
…177-on-v3.0.x

Backport PR #12177 on branch v3.0.x (FIX: remove cwd from mac font path search)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

import pyplot on MacOS without font cache will search entire subtree of current dir
7 participants