Skip to content

Commit 9df9691

Browse files
authored
Merge pull request #55 from nschloe/pypandoc
use pylatexenv parser
2 parents 5c0e000 + e909066 commit 9df9691

File tree

6 files changed

+290
-315
lines changed

6 files changed

+290
-315
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
- name: Run pre-commit
2020
uses: pre-commit/[email protected]
2121

22-
build:
22+
test:
2323
needs: [lint]
2424
runs-on: ${{ matrix.os }}
2525
strategy:
2626
matrix:
2727
os: [ubuntu-latest]
28-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
28+
python-version: ["3.7", "3.8", "3.9", "3.10"]
2929
include:
3030
- python-version: 3.8
3131
os: windows-latest

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ classifiers = [
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.6",
1817
"Programming Language :: Python :: 3.7",
1918
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
@@ -27,7 +26,8 @@ classifiers = [
2726
]
2827
keywords = ["latex", "linting"]
2928
dynamic = ["version"]
30-
requires-python = ">=3.6"
29+
requires-python = ">=3.7"
30+
dependencies = ["pylatexenc"]
3131

3232
[project.urls]
3333
Code = "https://github.com/nschloe/blacktex"

src/blacktex/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.5.3"
1+
__version__ = "0.6.0"

0 commit comments

Comments
 (0)