Skip to content

Commit

Permalink
fix version number generation under CD
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef committed Sep 27, 2023
1 parent e5acebd commit a81a775
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fix lifecycle rules being cleared after using `update-bucket` command if not explicitly set again.
* Fix missing key ID for large file encrypted with SSE-C (fixed by `b2sdk` update)

### Infrastructure
* Fix bad version number generation in CD

## [3.10.0] - 2023-09-10

### Added
Expand Down
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[project]
requires-python = ">=3.7"
name = "b2"
version = "0.0.0" # this is wrong, but setuptools>61 insists its here
# Including project:version breaks `version` number generation under gha CD
# [project]
# requires-python = ">=3.7"
# name = "b2"
# version = "0.0.0" # this is wrong, but setuptools>61 insists its here

[tool.ruff]
target-version = "py37" # to be replaced by project:requires-python when we will have that section in here

# TODO add D
select = ["E", "F", "I", "UP"]
# TODO: remove E501 once docstrings are formatted
Expand Down

0 comments on commit a81a775

Please sign in to comment.