Skip to content

Commit

Permalink
Up.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Mar 23, 2024
1 parent a4b3316 commit 335a4de
Show file tree
Hide file tree
Showing 27 changed files with 211 additions and 338 deletions.
16 changes: 10 additions & 6 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file (badge):README.rst]
search = /v{current_version}.svg
Expand All @@ -16,9 +16,13 @@ search = /v{current_version}...main
replace = /v{new_version}...main

[bumpversion:file:docs/conf.py]
search = version = release = '{current_version}'
replace = version = release = '{new_version}'
search = version = release = "{current_version}"
replace = version = release = "{new_version}"

[bumpversion:file:src/nameless/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:.cookiecutterrc]
search = version: {current_version}
replace = version: {new_version}
8 changes: 4 additions & 4 deletions .cookiecutterrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Generated by cookiepatcher, a small shim around cookiecutter (pip install cookiepatcher)

default_context:
allow_tests_inside_package: 'no'
c_extension_function: longest
c_extension_module: _nameless
c_extension_optional: 'yes'
c_extension_support: 'no'
Expand All @@ -21,6 +19,7 @@ default_context:
github_actions_osx: 'yes'
github_actions_windows: 'yes'
license: BSD 2-Clause License
module_name: core
package_name: nameless
pre_commit: 'yes'
project_name: Nameless
Expand All @@ -38,8 +37,9 @@ default_context:
sphinx_docs: 'yes'
sphinx_docs_hosting: https://python-nameless.readthedocs.io/
sphinx_doctest: 'yes'
sphinx_theme: sphinx-rtd-theme
test_matrix_separate_coverage: 'yes'
sphinx_theme: furo
test_matrix_separate_coverage: 'no'
tests_inside_package: 'yes'
version: 0.1.0
version_manager: bump2version
website: https://blog.ionelmc.ro
Expand Down
6 changes: 4 additions & 2 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[paths]
source = src
source =
src
*/site-packages

[run]
branch = true
source =
src
nameless
tests
parallel = true

Expand Down
Loading

0 comments on commit 335a4de

Please sign in to comment.