Skip to content

Commit 8db6cae

Browse files
committed
Restore environment-ci.yml
1 parent abc6676 commit 8db6cae

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

.ci/environment-ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
# This environment is smaller than the dev environment.
3+
#
4+
# Until conda supports creating env from pyproject.toml
5+
# (https://github.com/conda/conda/pull/12666)
6+
# we need to maintain environment-ci.yml file that is inline with deps in
7+
# pyproject.toml
8+
#
9+
name: jupytext-ci
10+
channels:
11+
- defaults
12+
- conda-forge
13+
dependencies:
14+
- python>=3.8
15+
- jupyterlab>=4.0.0
16+
- nbformat>=5.1.2
17+
- pandoc==2.16.2

.github/workflows/step_tests-conda.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
16-
python-version: [ 3.9 ]
16+
python-version: [ 3.11 ]
1717
runs-on: ${{ matrix.os }}
1818

1919
steps:
@@ -31,10 +31,10 @@ jobs:
3131
with:
3232
auto-update-conda: true
3333
auto-activate-base: false
34-
activate-environment: jupytext-dev
34+
activate-environment: jupytext-ci
3535
python-version: ${{ matrix.python-version }}
3636
channels: defaults,conda-forge
37-
environment-file: environment.yml
37+
environment-file: .ci/environment-ci.yml
3838
use-only-tar-bz2: true
3939

4040
- name: Install from source

environment.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ dependencies:
66
- python>=3.8
77
- jupyterlab>=4.0.0
88
- nbformat>=5.1.2
9-
- pyyaml
10-
- toml
11-
- markdown-it-py>=1.0.0,<3.0.0
12-
- mdit-py-plugins
13-
- nbconvert
14-
- ipykernel
15-
- pandoc==2.16.2
169
- pre-commit
1710
- nodejs>=20
11+
- pandoc==2.16.2

0 commit comments

Comments
 (0)