Skip to content

Commit

Permalink
Ensure setuptools_scm remains at the compatible version of ~=7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Sep 21, 2023
1 parent 6159fed commit 3ec7f2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: '>=3.7'
- name: Install dependencies
run: |
python -m pip install setuptools_scm # for setup.py --version
python -m pip install setuptools_scm~=7.0 # for setup.py --version
sudo apt-get install flex bison ccache
- name: Set up caching
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/track-wasmtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
if: steps.track-version.outputs.status == 'stale'
run: |
python -m pip install setuptools_scm # for setup.py --version
python -m pip install setuptools_scm~=7.0 # for setup.py --version
sudo apt-get install flex bison ccache
- name: Set up caching
if: steps.track-version.outputs.status == 'stale'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools~=67.0", "setuptools_scm[toml]>=6.2"]
requires = ["setuptools~=67.0", "setuptools_scm[toml]~=7.0"]
build-backend = "setuptools.build_meta"

[project]
Expand Down

0 comments on commit 3ec7f2b

Please sign in to comment.