Skip to content

Commit

Permalink
requirement file suffix
Browse files Browse the repository at this point in the history
- ci(branch-test-others): fix requirement file suffix
  • Loading branch information
msftcangoblowm committed Aug 31, 2024
1 parent 608d812 commit 38cf42d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/branch-test-others.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ defaults:

env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
LOCK_SUFFIX: ${{ vars.DRAINSWAMP_SET_LOCK == '1' && '.lock' || '.unlock' }}

permissions:
contents: read
Expand Down Expand Up @@ -61,7 +62,7 @@ jobs:
- name: "Install dependencies"
run: |
set -xe
python -m pip install -r requirements/tox.pip
python -m pip install -r requirements/tox$LOCK_SUFFIX
- name: "Run tox for ${{ matrix.python-version }}"
run: |
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Changelog
Commit items for NEXT VERSION
..............................

- ci(branch-test-others): fix requirement file suffix
- fix(cli_igor): seed changelog add check file not found and missing start token

.. scriv-start-here
Expand Down
4 changes: 2 additions & 2 deletions src/drain_swamp/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '1.6.3.dev0'
__version_tuple__ = version_tuple = (1, 6, 3, "dev0", "gfbc1800.d20240831")
__version__ = version = '1.6.3.dev1'
__version_tuple__ = version_tuple = (1, 6, 3, "dev1", "g608d812.d20240831")

0 comments on commit 38cf42d

Please sign in to comment.