Skip to content

Commit bca173a

Browse files
authored
Merge pull request #3 from ClimateImpactLab/feature/update-actions
update github actions workflow
2 parents 33ca446 + 6f11792 commit bca173a

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

.github/workflows/python-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: Set up Python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: '3.x'
2424
- name: Install dependencies
@@ -29,6 +29,6 @@ jobs:
2929
run: python -m build
3030
- name: Publish distribution 📦 to PyPI
3131
if: startsWith(github.ref, 'refs/tags')
32-
uses: pypa/gh-action-pypi-publish@master
32+
uses: pypa/gh-action-pypi-publish@release/v1
3333
with:
3434
password: ${{ secrets.PYPI_API_TOKEN }}

HISTORY.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
History
22
=======
33

4-
Unreleased
4+
v1.1.1
55
------
6-
* Use general Zenodo DOI numbers referencing latest version of each deposit
6+
* Update package dependencies
77

88
v1.1.0
99
------
10+
* Use general Zenodo DOI numbers referencing latest version of each deposit
1011
* Addition of AR6 and Sweet scenarios
1112
* Addition of `execute_pyciam` wrapper function
1213
* Updates to SLIIDERS inputs based on reviewer comments

environment/environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ dependencies:
3131
- xarray=2023.2.0
3232
- zarr=2.14.2
3333
- pip:
34-
# - python-ciam==1.1.0
34+
- python-ciam==1.1
3535
- rhg_compute_tools==1.3
36-
- parameterize_jobs==0.1.1
36+
- parameterize_jobs==0.1

setup.cfg

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,16 @@ classifiers =
1414
[options]
1515
packages = find:
1616
include_package_data = True
17-
requires = numpy
17+
requires = cloudpathlib
18+
distributed
19+
gitpython
20+
numpy
21+
rhg_compute_tools
22+
pandas
23+
parameterize_jobs
24+
pint-xarray
1825
scipy
26+
scikit-learn
1927
xarray
20-
pandas
28+
zarr
2129
python_requires = >=3.6

0 commit comments

Comments
 (0)