Skip to content

Commit 932c1c1

Browse files
committed
BUMP-VERSION: 0.6.3 (was: 0.6.2)
1 parent c9a549a commit 932c1c1

File tree

7 files changed

+8
-129
lines changed

7 files changed

+8
-129
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.2
2+
current_version = 0.6.3
33
files = setup.py parse_type/__init__.py .bumpversion.cfg
44
commit = False
55
tag = False

.github/workflows/manual-release-to-pypi.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/release-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Build this package
4646
run: python -m build
4747
- name: Check this package (before upload)
48-
run: twine check dist/* ─╯
48+
run: twine check dist/*
4949
- name: Upload this package to PyPI
5050
uses: pypa/gh-action-pypi-publish@release/v1
5151
with:

.github/workflows/release-to-testpypi.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.

parse_type/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from parse_type.builder import TypeBuilder, build_type_dict
1212

1313
__all__ = ["Cardinality", "TypeBuilder", "build_type_dict"]
14-
__version__ = "0.6.2"
14+
__version__ = "0.6.3"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ Download = "https://pypi.org/project/parse_type/"
6161

6262
[project.optional-dependencies]
6363
develop = [
64+
"setuptools",
6465
"build >= 0.5.1",
6566
"twine >= 1.13.0",
6667
"coverage >= 4.4",

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def find_packages_by_root_package(where):
5353
# -----------------------------------------------------------------------------
5454
setup(
5555
name = "parse_type",
56-
version = "0.6.2",
56+
version = "0.6.3",
5757
author = "Jens Engel",
5858
author_email = "jenisys@noreply.github.com",
5959
url = "https://github.com/jenisys/parse_type",
@@ -79,11 +79,12 @@ def find_packages_by_root_package(where):
7979
"pytest-html >= 1.19.0",
8080
],
8181
extras_require={
82-
'docs': [
82+
"docs": [
8383
"Sphinx >=1.6",
8484
"sphinx_bootstrap_theme >= 0.6.0"
8585
],
86-
'develop': [
86+
"develop": [
87+
"setuptools",
8788
"build >= 0.5.1",
8889
"twine >= 1.13.0",
8990
"coverage >= 4.4",

0 commit comments

Comments
 (0)