File tree Expand file tree Collapse file tree 6 files changed +19
-22
lines changed Expand file tree Collapse file tree 6 files changed +19
-22
lines changed Original file line number Diff line number Diff line change @@ -33,16 +33,12 @@ jobs:
33
33
- uses : actions/checkout@v4
34
34
- uses : r-lib/actions/setup-tinytex@v2
35
35
if : runner.os != 'Windows'
36
- - uses : conda-incubator /setup-miniconda@v2
36
+ - uses : actions /setup-python@v4
37
37
with :
38
- auto-update-conda : false
39
38
python-version : ${{ matrix.python-version }}
40
- channels : conda-forge,nodefaults
41
- miniforge-variant : Mambaforge
42
-
43
- - name : Install core dependencies.
44
- shell : bash -l {0}
45
- run : mamba install -c conda-forge tox-conda coverage
39
+ cache : pip
40
+ allow-prereleases : true
41
+ - run : pip install tox
46
42
47
43
# Unit, integration, and end-to-end tests.
48
44
Original file line number Diff line number Diff line change 73
73
additional_dependencies : [
74
74
attrs>=21.3.0,
75
75
click,
76
- pytask>=0.4.0rc4 ,
76
+ pytask>=0.4.0 ,
77
77
types-PyYAML,
78
78
types-setuptools
79
79
]
Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ This is a record of all past pytask-latex releases and what went into them in re
4
4
chronological order. Releases follow [ semantic versioning] ( https://semver.org/ ) and all
5
5
releases are available on [ Anaconda.org] ( https://anaconda.org/conda-forge/pytask-latex ) .
6
6
7
+ ## 0.4.0 - 2023-10-07
8
+
9
+ - {pull}` 60 ` updates the package to use pytask v0.4.0.
10
+
7
11
## 0.3.0 - 2022-12-xx
8
12
9
13
- {pull}` 49 ` removes support for INI configurations.
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ dependencies:
13
13
- toml
14
14
15
15
# Package dependencies
16
- - pytask >= 0.4.0rc4
17
- - pytask-parallel >= 0.4.0rc1
16
+ - pytask >= 0.4.0
17
+ - pytask-parallel >= 0.4.0
18
18
- latex-dependency-scanner >=0.1.1
19
19
20
20
# Misc
Original file line number Diff line number Diff line change @@ -24,10 +24,9 @@ project_urls =
24
24
[options]
25
25
packages = find:
26
26
install_requires =
27
- click
28
27
latex-dependency-scanner>=0.1.1
29
28
pluggy>=1.0.0
30
- pytask>=0.4.0rc4
29
+ pytask>=0.4.0
31
30
python_requires = >=3.8
32
31
include_package_data = True
33
32
package_dir = =src
Original file line number Diff line number Diff line change @@ -6,17 +6,15 @@ usedevelop = true
6
6
passenv = CI
7
7
8
8
[testenv:pytest]
9
- conda_channels =
10
- conda-forge
11
- conda-forge/label/pytask_rc
12
- conda-forge/label/pytask_parallel_rc
13
- nodefaults
14
- conda_deps =
15
- pytask >=0.4.0rc4
16
- pytask-parallel >=0.4.0rc1
17
- latex-dependency-scanner
9
+ deps =
10
+ # pytest
18
11
pytest
19
12
pytest-cov
20
13
pytest-xdist
14
+
15
+ # Package
16
+ pytask>=0.4.0
17
+ pytask-parallel>=0.4.0
18
+ latex-dependency-scanner>=0.1.1
21
19
commands =
22
20
pytest {posargs}
You can’t perform that action at this time.
0 commit comments