Skip to content

Commit c919387

Browse files
authored
Align pytask-latex with pytask v0.1.0. (#26)
1 parent 8393b85 commit c919387

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/continuous-integration-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
21-
python-version: ['3.6', '3.7', '3.8', '3.9']
21+
python-version: ['3.7', '3.8', '3.9']
2222

2323
steps:
2424
- uses: actions/checkout@v2

CHANGES.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ all releases are available on `Anaconda.org
77
<https://anaconda.org/conda-forge/pytask-latex>`_.
88

99

10-
0.0.13 - 2021-xx-xx
11-
-------------------
10+
0.1.0 - 2021-07-21
11+
------------------
1212

1313
- :gh:`23` updates the ``README.rst``.
1414
- :gh:`24` replaces versioneer with setuptools-scm.
15+
- :gh:`26` aligns pytask-latex with pytask v0.1.0.
1516

1617

1718
0.0.12 - 2021-03-05

environment.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ channels:
55
- nodefaults
66

77
dependencies:
8-
- python >= 3.6
8+
- python >= 3.7
99
- pip
1010
- setuptools_scm
1111
- toml
@@ -16,8 +16,8 @@ dependencies:
1616
- conda-verify
1717

1818
# Package dependencies
19-
- pytask >= 0.0.11
20-
- pytask-parallel >= 0.0.4
19+
- pytask >= 0.1.0
20+
- pytask-parallel >= 0.1.0
2121
- latex-dependency-scanner
2222

2323
# Misc

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ packages = find:
3030
install_requires =
3131
click
3232
latex-dependency-scanner
33-
pytask>=0.0.11
33+
pytask>=0.1.0
3434
python_requires = >=3.6
3535
include_package_data = True
3636
package_dir = =src

src/pytask_latex/collect.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from typing import Union
1111

1212
from _pytask.config import hookimpl
13-
from _pytask.mark import get_specific_markers_from_task
14-
from _pytask.mark import has_marker
1513
from _pytask.mark import Mark
14+
from _pytask.mark_utils import get_specific_markers_from_task
15+
from _pytask.mark_utils import has_marker
1616
from _pytask.nodes import _collect_nodes
1717
from _pytask.nodes import FilePathNode
1818
from _pytask.nodes import PythonFunctionTask

src/pytask_latex/execute.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import shutil
33

44
from _pytask.config import hookimpl
5-
from _pytask.mark import get_specific_markers_from_task
5+
from _pytask.mark_utils import get_specific_markers_from_task
66

77

88
@hookimpl

tox.ini

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,12 @@ basepython = python
99

1010
[testenv:pytest]
1111
conda_deps =
12-
pytask >=0.0.11
13-
pytask-parallel >=0.0.4
12+
pytask >=0.1.0
13+
pytask-parallel >=0.1.0
1414
latex-dependency-scanner
1515
pytest
1616
pytest-cov
1717
pytest-xdist
18-
networkx >= 2.4
1918
conda_channels =
2019
conda-forge
2120
nodefaults

0 commit comments

Comments
 (0)