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
12 changes: 6 additions & 6 deletions .github/workflows/ci-cd-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dev dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip wheel
pip install -e .[dev]
# TODO: add `pylint src`
- name: Formatting and linters
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip wheel
pip install -e .[tests]
- name: Test with pytest
env:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip wheel
pip install -e .[tests]

pip install pandas==${{ matrix.pandas-version }}
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip wheel
pip install -e .[tests]
pip uninstall -y seaborn

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install notebook dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip wheel
pip install -e .[tests,notebooks]
- name: Test notebooks with nbval
run: |
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade pip wheel
pip install -e .[dev]
- name: Create package
run: python setup.py sdist bdist_wheel --universal
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changelog
master
------

- (`#143 <https://github.com/openscm/scmdata/pull/143>`_) Alter time axis when serialising to netCDF so that time axis is easily read by other tools (e.g. xarray)

v0.8.0
------

Expand Down
Loading