Skip to content

Commit f806bed

Browse files
authored
Merge pull request #356 from jacebrowning/release-3.5.3
Bump version to 3.5.3
2 parents caaaad1 + d8d5f5a commit f806bed

7 files changed

Lines changed: 14 additions & 11 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ environment:
55
RANDOM_SEED: 0
66
matrix:
77
- PYTHON_MAJOR: 3
8-
PYTHON_MINOR: 8
8+
PYTHON_MINOR: 9
99

1010
cache:
1111
- .venv -> poetry.lock
@@ -20,7 +20,6 @@ install:
2020
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH%
2121
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
2222
# Install system dependencies
23-
- set POETRY_VERSION=1.8.5
2423
- curl -sSL https://install.python-poetry.org | python -
2524
- set PATH=%USERPROFILE%\AppData\Roaming\Python\Scripts;%PATH%
2625
- make doctor

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11"]
10+
python-version: ["3.9", "3.10", "3.11"]
1111

1212
steps:
1313
- uses: actions/checkout@v4
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ${{ matrix.python-version }}
1919

2020
- name: Install Poetry
21-
run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.5 python3 -
21+
run: curl -sSL https://install.python-poetry.org | python -
2222

2323
- name: Check dependencies
2424
run: make doctor

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
python 3.8.19
2-
poetry 1.8.5
2+
poetry 2.1.1

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.5.3 (2025-04-24)
2+
3+
- Fixed handling of git cache when using sparse checkouts. (@mastupristi)
4+
15
# 3.5.2 (2024-06-22)
26

37
- Fixed logic to included all nested configs.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ MODULES := $(wildcard $(PACKAGE)/*.py)
77
all: format check test mkdocs ## Run all tasks that determine CI status
88

99
.PHONY: dev
10-
dev: install .clean-test ## Continuously run all CI tasks when files chanage
10+
dev: install .clean-test ## Continuously run all CI tasks when files change
1111
poetry run sniffer
1212

1313
.PHONY: demo
@@ -74,7 +74,7 @@ $(DEPENDENCIES): poetry.lock
7474

7575
ifndef CI
7676
poetry.lock: pyproject.toml
77-
poetry lock --no-update
77+
poetry lock
7878
@ touch $@
7979
endif
8080

@@ -90,7 +90,7 @@ format: install
9090
@ echo
9191

9292
.PHONY: check
93-
check: install format ## Run formaters, linters, and static analysis
93+
check: install format ## Run formatters, linters, and static analysis
9494
ifdef CI
9595
git diff --exit-code
9696
endif

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

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

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

77
license = "MIT"
@@ -48,7 +48,7 @@ datafiles = "^2.3.1"
4848
minilog = "^2.3.1"
4949
universal-startfile = "~0.2"
5050

51-
[tool.poetry.dev-dependencies]
51+
[tool.poetry.group.dev.dependencies]
5252

5353
# Formatters
5454
black = "^24.8"

0 commit comments

Comments
 (0)