-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
217 additions
and
397 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
open_collective: courtbouillon |
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,28 @@ | ||
name: CairoSVG's tests | ||
on: [push] | ||
|
||
jobs: | ||
tests: | ||
name: ${{ matrix.os }} - ${{ matrix.python-version }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python-version: [3.6, 3.7, 3.8] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install CairoSVG | ||
run: pip install --upgrade -e.[test] | ||
- name: Setup fonts | ||
run: | | ||
mkdir ~/.fonts | ||
cp ./test_non_regression/resources/*.*tf ~/.fonts | ||
fc-cache -f -v | ||
- name: Launch tests | ||
run: python setup.py test |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,21 @@ | ||
========== | ||
CairoSVG | ||
========== | ||
CairoSVG is an SVG converter based on Cairo. It can export SVG files to PDF, | ||
EPS, PS, and PNG files. | ||
|
||
CairoSVG is a SVG converter based on Cairo. It can export SVG files to PDF, | ||
PostScript and PNG files. | ||
* Free software: LGPL license | ||
* For Python 3.6+, tested on CPython and PyPy | ||
* Documentation: https://cairosvg.org/documentation/ | ||
* Changelog: https://github.com/Kozea/CairoSVG/releases | ||
* Code, issues, tests: https://github.com/Kozea/CairoSVG | ||
* Code of conduct: https://www.courtbouillon.org/code-of-conduct | ||
* Professional support: https://www.courtbouillon.org | ||
* Donation: https://opencollective.com/courtbouillon | ||
|
||
For further information, please visit the `CairoSVG Website | ||
<http://www.cairosvg.org/>`_. | ||
CairoSVG has been created and developed by Kozea (https://kozea.fr). | ||
Professional support, maintenance and community management is provided by | ||
CourtBouillon (https://www.courtbouillon.org). | ||
|
||
Copyrights are retained by their contributors, no copyright assignment is | ||
required to contribute to CairoSVG. Unless explicitly stated otherwise, any | ||
contribution intentionally submitted for inclusion is licensed under the LGPL | ||
license, without any additional terms or conditions. For full | ||
authorship information, see the version control history. |
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 +1 @@ | ||
2.4.2 | ||
2.5.0 |
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
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.