-
Notifications
You must be signed in to change notification settings - Fork 113
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
Make temp directory creation more robust, log only on errors #104
Conversation
ce8883f
to
ed3a039
Compare
what is missing to get this merged and released? I also saw this 'errors' and looked into it on how to remove them |
@ickc any chance this can make it into a release? |
Any updates on this? |
@jgm Can we get this merged? It's a trivial change, that solves a long standing issue in dependent projects, e.g. timofurrer/pandoc-mermaid-filter#20 |
I don't use Python and my old notes on how a release is created seem to be obsolete, so I could use help here if you want this officially released to pypi. |
I can help with that i maintain a few python packages like colorful or radish. what kind of help are you looking for?
|
For now, manual I guess. I could also use help in fixing the CI failures. |
here is what im doing with radish:
I guess thats very similar to https://github.com/jgm/pandocfilters/blob/master/PACKAGING main thing that might be confusing is that the twine user ise maybe a python3 -m pip install twine is required if you haven't installed it yet |
Interesting, that's what I tried, and I got a mention that using setup.py in this way was deprecated....but I guess it did still create the dist, so maybe I can go forward. |
For pipeline stuff i can take a closer look this weekend some quick observations:
|
So I guess I need to set that up. |
Yep thats this part
|
Yes setup.py is deprecated but will probably still work fine for some time. For an example migration you can take a look at something like this timofurrer/pandoc-plantuml-filter@d622397 and then you can build with something like this ->
|
OK I managed to publish. |
@jgm i just tested it and it seems like you released a version with out the merged fix 😅
and im on 1.5.1
is it possible to release the current master as 1.5.2 or something? |
Here's what I'm seeing after installing 1.5.1 using pip3:
returns no differences between the version in master and the installed version. Looking at the code in /opt/homebrew/, I see this from this PR:
So I believe the code is in the released version -- you can confirm on your own system? |
Oh I see 😅 the would you be open to remove this log on success? (i can provide a MR if required) |
Sorry I am not sure I understand. Can you give more details? |
No worries i will provide a MR then we can discuss it there :), btw did you had a chance to look at the MR for the pipeline? #106 |
Follow up to PR #103