-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #500 from nschloe/tables-fix-2
external tables fix
- Loading branch information
Showing
80 changed files
with
435 additions
and
9,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version := `python3 -c "from configparser import ConfigParser; p = ConfigParser(); p.read('setup.cfg'); print(p['metadata']['version'])"` | ||
name := `python3 -c "from configparser import ConfigParser; p = ConfigParser(); p.read('setup.cfg'); print(p['metadata']['name'])"` | ||
|
||
|
||
default: | ||
@echo "\"just publish\"?" | ||
|
||
tag: | ||
@if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi | ||
curl -H "Authorization: token `cat ~/.github-access-token`" -d '{"tag_name": "{{version}}"}' https://api.github.com/repos/nschloe/{{name}}/releases | ||
|
||
upload: clean | ||
@if [ "$(git rev-parse --abbrev-ref HEAD)" != "main" ]; then exit 1; fi | ||
# https://stackoverflow.com/a/58756491/353337 | ||
python3 -m build --sdist --wheel . | ||
twine upload dist/* | ||
|
||
publish: tag upload | ||
|
||
clean: | ||
@find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf | ||
@rm -rf src/*.egg-info/ build/ dist/ .tox/ | ||
|
||
format: | ||
isort . | ||
black . | ||
blacken-docs README.md | ||
|
||
lint: | ||
black --check . | ||
flake8 . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = tikzplotlib | ||
version = 0.9.9 | ||
version = 0.9.10 | ||
author = Nico Schlömer | ||
author_email = [email protected] | ||
description = Convert matplotlib figures into TikZ/PGFPlots | ||
|
@@ -15,6 +15,7 @@ license = MIT | |
license_file = LICENSE | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Framework :: Matplotlib | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.