Skip to content

Commit

Permalink
use pip-tools version 6.13.0 to work with pip >= 23.1 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
burnes committed Apr 17, 2023
1 parent 44809d9 commit 2c3d9bd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changes for Lovely Gradle Plugin

## 2023-02-01 / 1.11.4

### Fixes

- use pip-tools version 6.13.0 to work with pip >= 23.1
(https://pyup.io/packages/pypi/pip-tools/changelog?page=1&#6.13.0)

## 2023-02-01 / 1.11.3

### Fixes
Expand All @@ -14,7 +21,7 @@

### Fixes

- pythonProject: use latest pip-tools and remove pins for setuptools and pip
- pythonProject: use latest pip-tools and remove pins for setuptools and pip
- setuptools compatibility: convert git describe output to pep440 compatible version

## 2023-01-30 / 1.11.0
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
}

group = "com.lovelysystems"
version = "1.11.3"
version = "1.11.4"

val pluginId = "com.lovelysystems.gradle"

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/lovelysystems/gradle/PythonProject.kt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ open class VenvTask : DefaultTask() {
project.pythonSettings.pip, "install", "--upgrade",
"pip",
"setuptools",
"pip-tools==6.12.1"
"pip-tools==6.13.0"
)
}
}
Expand Down

0 comments on commit 2c3d9bd

Please sign in to comment.