Skip to content

Commit bb0087b

Browse files
committed
update github action script and versions in pyproject
1 parent 0452dad commit bb0087b

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/test_wxmplot_install.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Test Installing wxmplot, using mamba
1+
name: Test Installing wxmplot, using conda
22

33
on: [push]
44

@@ -9,26 +9,26 @@ jobs:
99
max-parallel: 4
1010
fail-fast: false
1111
matrix:
12-
python-version: [3.8, 3.9, '3.10', '3.11']
12+
python-version: ['3.9', '3.10', '3.11', '3.12']
1313
defaults:
1414
run:
1515
shell: bash -l {0}
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python with Miniconda/mamba
18+
- name: Set up Python with Miniconda
1919
uses: conda-incubator/setup-miniconda@v2
2020
with:
2121
miniconda-version: latest
22-
mamba-version: "*"
22+
conda-version: "*"
2323
channels: conda-forge,defaults
2424
channel-priority: true
2525
activate-environment: anaconda-client-env
2626
python-version: ${{ matrix.python-version }}
27-
- name: Install mamb dependencies
27+
- name: Install conda dependencies
2828
run: |
29-
mamba install -y -c conda-forge python=${{ matrix.python-version }} numpy=>1.22 matplotlib=>3.6 wxpython=>4.2 pip pytest
30-
mamba info -a
31-
mamba list
29+
conda install -y -c conda-forge python=${{ matrix.python-version }} numpy=>1.22 matplotlib=>3.6 wxpython=>4.2 pip pytest
30+
conda info -a
31+
conda list
3232
- name: Install wxmplot with pip
3333
run: |
3434
python -m pip install --upgrade pip

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ classifiers = [
4343
]
4444

4545
dependencies = [
46-
"wxPython>=4.1.0",
46+
"wxPython>=4.2.0",
4747
"wxutils>=0.3.0",
48-
"matplotlib>=3.5.0",
49-
"numpy>=1.18",
48+
"matplotlib>=3.6.0",
49+
"numpy>=1.22",
5050
"Pillow>=7.0",
5151
"pyyaml>=5.0",
5252
"pyshortcuts>=1.9.5"]

0 commit comments

Comments
 (0)