Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin dependencies in workflows #1744

Merged
merged 4 commits into from
May 10, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
echo "CURRENT_VERSION=${CURRENT_VERSION}" >> $GITHUB_ENV
- name: Install bump-my-version
run: |
python -m pip install bump-my-version
python -m pip install bump-my-version==0.21.0
- name: Conditional Bump
id: bump
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install pip, pylint, and tox
run: |
python -m pip install flit pip~=24.0 pylint tox~=4.0
python -m pip install flit==3.9 pip==24.0 pylint==3.1 tox==4.15
- name: Run pylint
run: |
python -m pylint --rcfile=.pylintrc.toml --disable=import-error --exit-zero xclim
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install flit pip~=24.0 tox~=4.0
python -m pip install flit==3.9 pip==24.0 tox==4.15
- name: Test with tox
run: |
python -m tox -e ${{ matrix.tox-env }}
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install flit pip~=24.0 tox~=4.0 tox-gh
python -m pip install flit==3.9 pip==24.0 tox==4.15 tox-gh==1.3.1
- name: Test with tox
run: |
python -m tox -e ${{ matrix.tox-env }} -- ${{ matrix.markers }}
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
steps:
- name: Coveralls Finished
run: |
python -m pip install --upgrade coveralls
python -m pip install --upgrade coveralls==4.0
python -m coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install flit
python -m pip install flit==3.9.0
- name: Build a binary wheel and a source tarball
run: |
python -m flit build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install flit
python -m pip install flit==3.9.0
- name: Build a binary wheel and a source tarball
run: |
python -m flit build
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
=========

v0.50.0 (unreleased)
--------------------
Contributors to this version: Trevor James Smith (:user:`Zeitsperre`).

Internal changes
^^^^^^^^^^^^^^^^
* Synchronized tooling versions across ``pyproject.toml`` and ``tox.ini`` and pinned them to the latest stable releases in GitHub Workflows. (:pull:`1744`).

v0.49.0 (2024-05-02)
--------------------
Contributors to this version: Trevor James Smith (:user:`Zeitsperre`), Pascal Bourgault (:user:`aulemahal`), Juliette Lavoie (:user:`juliettelavoie`), David Huard (:user:`huard`), Gabriel Rondeau-Genesse (:user:`RondeauG`), Javier Diez-Sierra (:user:`JavierDiezSierra`), Sarah Gammon (:user:`SarahG-579462`), Éric Dupuis (:user:`coxipi`).
Expand Down
9 changes: 5 additions & 4 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ dependencies:
- cairosvg
- codespell
- coverage
- coveralls >=4.0.0
- distributed >=2.0
- filelock
- flake8
- flake8-rst-docstrings
- flit
- flit >=3.9.0
- furo >=2023.9.10
- h5netcdf
- ipykernel
Expand All @@ -57,9 +58,9 @@ dependencies:
- pandas-stubs
- platformdirs
- pooch
- pre-commit
- pre-commit >=3.7
- pybtex
- pylint
- pylint >=3.1
- pytest <8.0 # Pinned due to breakage with xdoctest. See: https://github.com/Erotemic/xdoctest/issues/151
- pytest-cov
- pytest-socket
Expand All @@ -73,7 +74,7 @@ dependencies:
- sphinx-mdinclude
- sphinxcontrib-bibtex
- tokenize-rt
- tox >=4.0
- tox >=4.15.0
# - tox-conda # Will be added when a tox@v4.0+ compatible plugin is released.
- vulture # ==2.11 # The conda-forge version is out of date.
- xdoctest
Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["flit_core >=3.8,<4"]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"

[project]
Expand Down Expand Up @@ -60,7 +60,8 @@ dev = [
"bump-my-version >=0.17.1",
"codespell",
"coverage[toml]",
"flake8",
"coveralls >=4.0.0",
"flake8 >=7.0.0",
Zeitsperre marked this conversation as resolved.
Show resolved Hide resolved
"flake8-alphabetize",
"flake8-rst-docstrings",
"h5netcdf",
Expand All @@ -71,11 +72,11 @@ dev = [
"nbqa",
"nbval",
"netCDF4 >=1.4",
"pandas-stubs>=2.2",
"pandas-stubs >=2.2",
"platformdirs >=3.2",
"pre-commit >=2.9",
"pre-commit >=3.7",
"pybtex",
"pylint",
"pylint >=3.1",
"pytest <8.0", # Pinned due to breakage with xdoctest. See: https://github.com/Erotemic/xdoctest/issues/151
"pytest-cov",
"pytest-socket",
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
min_version = 4.5
min_version = 4.15
env_list =
lint
docs
Expand All @@ -13,7 +13,7 @@ labels =
test = py39, py310-upstream-doctest, py311, notebooks_doctests, offline-prefetch
requires =
pip >= 24.0
flit
flit >=3.9
opts = -vv

[gh]
Expand All @@ -29,10 +29,10 @@ skip_install = True
extras =
deps =
codespell
flake8
flake8 >=7.0.0
flake8-alphabetize
flake8-rst-docstrings
black[jupyter]==24.4.1
black[jupyter]==24.4.2
blackdoc==0.3.9
isort==5.13.2
nbqa
Expand Down
Loading