Skip to content

Commit

Permalink
bumpversion 0.6.18
Browse files Browse the repository at this point in the history
  • Loading branch information
MyPyDavid committed Mar 5, 2023
1 parent 9f4913f commit 1d581a1
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ sample2-100_3.txt => sampleID = 'sample2-100', position = 3
```
### Version

The current version is v0.6.17
The current version is v0.6.18

### Dependencies

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ requires = [
[tool.setuptools_scm]
write_to = "src/raman_fitting/_version.py"
local_scheme = 'dirty-tag'
fallback_version = '0.6.15'
fallback_version = '0.6.18'
#"write_to": "src/raman_fitting/_version.py"
36 changes: 18 additions & 18 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.15
current_version = 0.6.18
commit = True
tag = True
message = '{current_version} → {new_version}'
Expand All @@ -13,9 +13,9 @@ description = Python framework for the batch processing and deconvolution of ram
long_description = file:README.md
long_description_content_type = text/markdown
url = https://github.com/MyPyDavid/raman-fitting.git
project_urls =
project_urls =
Source Code = https://github.com/MyPyDavid/raman-fitting.git
classifiers =
classifiers =
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python
Expand All @@ -30,15 +30,15 @@ classifiers =

[options]
python_requires = >=3.7.0
install_requires =
install_requires =
pandas >= 1.0.0
scipy >= 1.5.2
lmfit >= 1.0.0
matplotlib >= 3.1.2
numpy >= 1.19.2
openpyxl >= 3.0.1
include_package_data = True
package_dir =
package_dir =
= src
packages = find:
setup_requires = setuptools_scm
Expand All @@ -48,7 +48,7 @@ setup_requires = setuptools_scm

[options.packages.find]
where = src
exclude =
exclude =
build*
dist*
docs*
Expand All @@ -57,18 +57,18 @@ exclude =
tools*

[options.entry_points]
console_scripts =
console_scripts =
raman_fitting = raman_fitting.interfaces:main

[options.extras_require]
testing =
testing =
pytest
pytest-cov
pytest-flake8
mock
wheel
pip>=19.1 # For proper file:// URLs support.
dev =
dev =
isort
pylint
flake8
Expand All @@ -82,7 +82,7 @@ dev =
test = pytest

[check-manifest]
ignore =
ignore =
.github
.github/*

Expand All @@ -104,38 +104,38 @@ precision = 2
omit = *migrations*

[coverage:paths]
source =
source =
src
*/site-packages

[coverage:run]
branch = False
source =
source =
src
omit =
omit =
*/tests/*
*/src/raman_fitting/*/_dev_*.py
*/src/raman_fitting/*/_todo_*.py
parallel = true

[coverage:report]
exclude_lines =
exclude_lines =
pragma: no cover

def __repr__
if self\.debug

raise AssertionError
raise NotImplementedError

if 0:
if __name__ == .__main__.:

[pylint]
extension-pkg-whitelist = numpy, pandas, matplotlib, lmfit

[flake8]
ignore =
ignore =
E402,
W503,
W504,
Expand Down
2 changes: 1 addition & 1 deletion src/raman_fitting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

__version__ = version
except:
__version__ = "__version__ = '0.6.15'"
__version__ = "__version__ = '0.6.18'"


from raman_fitting.config import filepath_settings
Expand Down

0 comments on commit 1d581a1

Please sign in to comment.