Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
mamba-version: "*"
miniforge-version: latest
channel-priority: true
environment-file: environment.yml
auto-activate-base: false
Expand Down
2 changes: 1 addition & 1 deletion echo/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1
1.2
6 changes: 3 additions & 3 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ channels:
- conda-forge
- pytorch
dependencies:
- python=3.10
- python=3.12
- sphinx
- pytest
- setuptools
- optuna
- numpy<1.23.0
- optuna<4.0
- numpy
- scipy
- matplotlib
- scikit-learn
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ numpy
scipy
matplotlib
pandas
optuna
optuna<4.0
setuptools
pyyaml
scikit-learn
xgboost
pyarrow
pyarrow
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

url = https://github.com/NCAR/echo-opt

Expand All @@ -26,12 +27,12 @@ packages =
echo.src
include_package_data = True
setup_requires = setuptools
python_requires = >=3.7
python_requires = >3.7
install_requires =
numpy<2
numpy
scipy
matplotlib
optuna
optuna<4.0
setuptools
pandas
scikit-learn
Expand Down
Loading