Skip to content

Commit 0d5a332

Browse files
committed
Last updates.
1 parent 1193f75 commit 0d5a332

File tree

6 files changed

+19
-22
lines changed

6 files changed

+19
-22
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,12 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- uses: r-lib/actions/setup-tinytex@v2
3535
if: runner.os != 'Windows'
36-
- uses: conda-incubator/setup-miniconda@v2
36+
- uses: actions/setup-python@v4
3737
with:
38-
auto-update-conda: false
3938
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
4642

4743
# Unit, integration, and end-to-end tests.
4844

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ repos:
7373
additional_dependencies: [
7474
attrs>=21.3.0,
7575
click,
76-
pytask>=0.4.0rc4,
76+
pytask>=0.4.0,
7777
types-PyYAML,
7878
types-setuptools
7979
]

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This is a record of all past pytask-latex releases and what went into them in re
44
chronological order. Releases follow [semantic versioning](https://semver.org/) and all
55
releases are available on [Anaconda.org](https://anaconda.org/conda-forge/pytask-latex).
66

7+
## 0.4.0 - 2023-10-07
8+
9+
- {pull}`60` updates the package to use pytask v0.4.0.
10+
711
## 0.3.0 - 2022-12-xx
812

913
- {pull}`49` removes support for INI configurations.

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ dependencies:
1313
- toml
1414

1515
# Package dependencies
16-
- pytask >= 0.4.0rc4
17-
- pytask-parallel >= 0.4.0rc1
16+
- pytask >= 0.4.0
17+
- pytask-parallel >= 0.4.0
1818
- latex-dependency-scanner >=0.1.1
1919

2020
# Misc

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ project_urls =
2424
[options]
2525
packages = find:
2626
install_requires =
27-
click
2827
latex-dependency-scanner>=0.1.1
2928
pluggy>=1.0.0
30-
pytask>=0.4.0rc4
29+
pytask>=0.4.0
3130
python_requires = >=3.8
3231
include_package_data = True
3332
package_dir = =src

tox.ini

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,15 @@ usedevelop = true
66
passenv = CI
77

88
[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
1811
pytest
1912
pytest-cov
2013
pytest-xdist
14+
15+
# Package
16+
pytask>=0.4.0
17+
pytask-parallel>=0.4.0
18+
latex-dependency-scanner>=0.1.1
2119
commands =
2220
pytest {posargs}

0 commit comments

Comments
 (0)