Skip to content

Commit 1ae9854

Browse files
authored
Align pytask-r with pytask v0.1.0. (#18)
1 parent 63e9c09 commit 1ae9854

8 files changed

+12
-14
lines changed

.gitattributes

-1
This file was deleted.

.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
r-version: ['3.6.3']
2323

2424
steps:

CHANGES.rst

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

99

10-
0.0.10 - 2021-xx-xx
11-
-------------------
10+
0.1.0 - 2021-07-22
11+
------------------
1212

1313
- :gh:`15` fixes the tests related to changes in pytask.
1414
- :gh:`16` replaces versioneer with setuptools-scm.
15+
- :gh:`18` aligns pytask-r with pytask v0.1.0.
1516

1617

1718
0.0.9 - 2021-03-05

environment.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies:
1616
- conda-verify
1717

1818
# Package dependencies
19-
- pytask >=0.0.9
20-
- pytask-parallel >=0.0.4
19+
- pytask >=0.1.0
20+
- pytask-parallel >=0.1.0
2121
- r-base
2222

2323
# Misc
@@ -27,5 +27,4 @@ dependencies:
2727
- pre-commit
2828
- pytest-cov
2929
- pytest-xdist
30-
- versioneer
3130
- black

setup.cfg

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

src/pytask_r/collect.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
from typing import Union
99

1010
from _pytask.config import hookimpl
11-
from _pytask.mark import get_specific_markers_from_task
12-
from _pytask.mark import has_marker
11+
from _pytask.mark_utils import get_specific_markers_from_task
12+
from _pytask.mark_utils import has_marker
1313
from _pytask.nodes import FilePathNode
1414
from _pytask.nodes import PythonFunctionTask
1515
from _pytask.parametrize import _copy_func

src/pytask_r/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,12 +9,11 @@ basepython = python
99

1010
[testenv:pytest]
1111
conda_deps =
12-
pytask >=0.0.9
13-
pytask-parallel >=0.0.4
12+
pytask >=0.1.0
13+
pytask-parallel >=0.1.0
1414
pytest
1515
pytest-cov
1616
pytest-xdist
17-
networkx >=2.4
1817
conda_channels =
1918
conda-forge
2019
nodefaults

0 commit comments

Comments
 (0)