Skip to content

Commit c7efcbb

Browse files
authored
Merge pull request #329 from jacebrowning/release-3.5
Bump version to 3.5
2 parents 2096588 + e52ed04 commit c7efcbb

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343

4444
- name: Upload coverage
4545
uses: codecov/codecov-action@v4
46+
if: ${{ inputs.os == 'ubuntu-latest' && matrix.python-version == '3.8' }}
4647
with:
4748
fail_ci_if_error: true
4849
token: ${{ secrets.CODECOV_TOKEN }}

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# 3.4.1 (beta)
1+
# 3.5 (2024-04-27)
22

3-
- Fixed logic in filtering nested config.
43
- Added `--no-scripts` option to skip install/update scripts.
4+
- Fixed logic in filtering nested configs.
55

66
# 3.4 (2023-03-24)
77

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22

33
name = "gitman"
4-
version = "3.4.1b2"
4+
version = "3.5"
55
description = "A language-agnostic dependency manager using Git."
66

77
license = "MIT"
@@ -44,8 +44,8 @@ classifiers = [
4444

4545
python = "^3.8"
4646

47-
datafiles = "^2.1.2"
48-
minilog = "^2.1"
47+
datafiles = "^2.2"
48+
minilog = "^2.3"
4949
universal-startfile = "~0.2"
5050

5151
[tool.poetry.dev-dependencies]

tests/test_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,7 @@ def config_with_link(config):
253253

254254
return config
255255

256+
@pytest.mark.skipif(os.name == "nt", reason="Test does not work on Windows")
256257
def it_should_create_links(config_with_link):
257258
expect(gitman.install(depth=1)) == True
258259

0 commit comments

Comments
 (0)