Skip to content

Commit

Permalink
Bumpversion 0.2.3 -> 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cacharle committed Aug 31, 2023
1 parent a073173 commit 18eaaa7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 19 deletions.
1 change: 1 addition & 0 deletions c_formatter_42/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.2.4"
48 changes: 29 additions & 19 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,40 +1,50 @@
[bumpversion]
current_version = 0.2.4
tag = true
commit = true

[bumpversion:file:setup.cfg]

[bumpversion:file:barcode_tracking/__init__.py]
parse = __version__ = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)

[metadata]
name = c_formatter_42
version = 0.2.3
version = 0.2.4
description = formatting tool complient with 42 school's norm
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dawnbeen/c_formatter_42
project_urls =
Tracker = https://github.com/dawnbeen/c_formatter_42/issues
Tracker = https://github.com/dawnbeen/c_formatter_42/issues
classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: C
Intended Audience :: Developers
Environment :: Console
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: C
Intended Audience :: Developers
Environment :: Console
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Operating System :: POSIX :: Linux
[options]
packages = find:
python_requires = >=3.7
[options.package_data]
* =
data/*
data/.*
data/*
data/.*
[options.exclude_package_data]
c_formatter_42 = test_*
[options.entry_points]
console_scripts =
c_formatter_42 = c_formatter_42.__main__:main
c_formatter_42 = c_formatter_42.__main__:main
[flake8]
ignore = E221,W503,E241
Expand All @@ -54,9 +64,9 @@ source = c_formatter_42
[coverage:report]
exclude_lines =
pragma: no cover
sys.platform
NotImplementedError
pragma: no cover
sys.platform
NotImplementedError
[tool:isort]
profile = black

0 comments on commit 18eaaa7

Please sign in to comment.