Skip to content

Commit

Permalink
Upgraded packages and python (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch authored May 4, 2024
1 parent 83d2aab commit 2d85300
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/check-style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.12'
- name: Setup miniconda
uses: conda-incubator/setup-miniconda@v3.0.3
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.8
python-version: 3.12
auto-update-conda: true
mamba-version: "*"
channels: conda-forge,defaults
activate-environment: AST
environment-file: environment.yml
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/small-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
maven: [ '3.9.2']
maven: [ '3.9.2' ]
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -31,15 +31,16 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up Python 3.8
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.12'
- name: Setup miniconda
uses: conda-incubator/setup-miniconda@v3.0.3
uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.8
python-version: 3.12
auto-update-conda: true
mamba-version: "*"
channels: conda-forge,defaults
activate-environment: AST
environment-file: environment.yml
Expand Down
23 changes: 11 additions & 12 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,18 @@ dependencies:
- wheel
- xz
- zlib
- python=3.8
- python=3.12
- pip:
- fasteners==0.18
- matplotlib==3.6.3
- numpy==1.23.5
- pandas==2.0.2
- pylint==2.17.5
- GitPython==3.1.31
- prettytable==3.8.0
- seaborn==0.12.2
- fasteners==0.19
- matplotlib==3.8.4
- numpy==1.26.4
- pandas==2.2.2
- pylint==3.1.0
- GitPython==3.1.43
- prettytable==3.10.0
- seaborn==0.13.2
- rich==13.7.1
- black==23.3.0
- psutil==5.9.5
- black==24.4.2
- psutil==5.9.8
- termplotlib==0.3.9
- timeout-decorator==0.5.0
- loguru==0.7.2

0 comments on commit 2d85300

Please sign in to comment.