Skip to content

Commit

Permalink
update dependencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Zybulon committed Sep 8, 2024
1 parent 65481ce commit 74c52c0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ jobs:
timeout-minutes: 120
steps:
- name: checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install dependencies
shell: bash
run: |
sudo apt-get update --fix-missing
sudo apt-get install -qq pyqt5-dev-tools libxcb-xinerama0 xterm --fix-missing
- name : Setup miniforge
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
python-version: ${{ matrix.PYTHON_VERSION }}
Expand All @@ -45,9 +45,9 @@ jobs:
activate-environment: test
miniforge-version: latest
- name: Setup node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '13'
node-version: latest
- name: Create test environment
shell: bash -l {0}
run: bash -l .github/scripts/install.sh
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
timeout-minutes: 120
steps:
- name: checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name : Setup miniforge
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
python-version: ${{ matrix.PYTHON_VERSION }}
Expand All @@ -48,19 +48,19 @@ jobs:
conda info
conda list
- name: Setup node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '13'
node-version: '18.4.0'
- name: Node and NPM version
shell: bash -l {0}
run: |
export PATH=/Users/runner/hostedtoolcache/node/13.14.0/x64/bin:$PATH
export PATH=/Users/runner/hostedtoolcache/node/18.4.0/x64/bin:$PATH
node -v
npm -v
- name: Build static resources
shell: bash -l {0}
run: |
export PATH=/Users/runner/hostedtoolcache/node/13.14.0/x64/bin:$PATH
export PATH=/Users/runner/hostedtoolcache/node/18.4.0/x64/bin:$PATH
python setup.py build_static
- name: Run tests
shell: bash -l {0}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
timeout-minutes: 120
steps:
- name: checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name : Setup miniforge
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
miniforge-variant: Mambaforge
miniforge-variant: Miniforge
python-version: ${{ matrix.PYTHON_VERSION }}
mamba-version: "*"
use-mamba: true
Expand All @@ -40,9 +40,9 @@ jobs:
activate-environment: test
miniforge-version: latest
- name: Setup node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '13'
node-version: latest
- name: Create test environment
shell: bash -l {0}
run: bash -l .github/scripts/install.sh
Expand Down
2 changes: 1 addition & 1 deletion requirements/conda_win.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
spyder>=6.0.0
pywinpty==2.0.5
pywinpty
tornado
coloredlogs
requests
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_description():
'pytest',
'pytest-cov',
'flaky',
'pytest-qt==3.3.0',
'pytest-qt',
'pytest-timeout'
]
}
Expand Down

0 comments on commit 74c52c0

Please sign in to comment.