Skip to content

Commit

Permalink
Fix pyproject config (#18)
Browse files Browse the repository at this point in the history
* Fix pyproject.toml

* disable tag generation by bumpversion

* Bump version: 0.0.1 → 0.0.2
  • Loading branch information
rohitsanj authored Aug 2, 2022
1 parent 462c256 commit 7ef80be
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.0.2
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
commit = True
tag = True
tag = False
sign_tags = True

[bumpversion:file:origami/_version.py]
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.0.2] - 2022-08-02
### Changed
- Change `name` in pyproject.toml from `origami` to `noteable-origami`
- Disable tag generation by bumpversion

### Added
- Add `packages` to pyproject.toml

### Removed
- Remove `tool.poetry.source` config from pyproject.toml

## [0.0.1] - 2022-08-02
### Added
- Initial setup
2 changes: 1 addition & 1 deletion origami/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.0.1"
version = "0.0.2"
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# character.

[tool.poetry]
name = "origami"
version = "0.0.1"
name = "noteable-origami"
version = "0.0.2"
description = "The Noteable API interface"
authors = ["Matt Seal <[email protected]>"]
maintainers = ["Matt Seal <[email protected]>"]
Expand All @@ -23,14 +23,14 @@ classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
packages = [
{ include = "origami" },
]

# Manifest.in is subsumed by poetry here
# https://python-poetry.org/docs/pyproject/#include-and-exclude
include = []

[[tool.poetry.source]]
name = "noteable-origami"
url = "https://pypi.org"

[tool.poetry.dependencies]
python = "^3.8"
Expand Down

0 comments on commit 7ef80be

Please sign in to comment.