Skip to content

Commit

Permalink
BUMP-VERSION: 0.6.3 (was: 0.6.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jenisys committed Aug 26, 2024
1 parent c9a549a commit 932c1c1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 129 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.2
current_version = 0.6.3
files = setup.py parse_type/__init__.py .bumpversion.cfg
commit = False
tag = False
Expand Down
65 changes: 0 additions & 65 deletions .github/workflows/manual-release-to-pypi.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/release-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Build this package
run: python -m build
- name: Check this package (before upload)
run: twine check dist/* ─╯
run: twine check dist/*
- name: Upload this package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
58 changes: 0 additions & 58 deletions .github/workflows/release-to-testpypi.yml

This file was deleted.

2 changes: 1 addition & 1 deletion parse_type/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from parse_type.builder import TypeBuilder, build_type_dict

__all__ = ["Cardinality", "TypeBuilder", "build_type_dict"]
__version__ = "0.6.2"
__version__ = "0.6.3"
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Download = "https://pypi.org/project/parse_type/"

[project.optional-dependencies]
develop = [
"setuptools",
"build >= 0.5.1",
"twine >= 1.13.0",
"coverage >= 4.4",
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def find_packages_by_root_package(where):
# -----------------------------------------------------------------------------
setup(
name = "parse_type",
version = "0.6.2",
version = "0.6.3",
author = "Jens Engel",
author_email = "[email protected]",
url = "https://github.com/jenisys/parse_type",
Expand All @@ -79,11 +79,12 @@ def find_packages_by_root_package(where):
"pytest-html >= 1.19.0",
],
extras_require={
'docs': [
"docs": [
"Sphinx >=1.6",
"sphinx_bootstrap_theme >= 0.6.0"
],
'develop': [
"develop": [
"setuptools",
"build >= 0.5.1",
"twine >= 1.13.0",
"coverage >= 4.4",
Expand Down

0 comments on commit 932c1c1

Please sign in to comment.