Skip to content

Commit 1d581a1

Browse files
committed
bumpversion 0.6.18
1 parent 9f4913f commit 1d581a1

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ sample2-100_3.txt => sampleID = 'sample2-100', position = 3
104104
```
105105
### Version
106106

107-
The current version is v0.6.17
107+
The current version is v0.6.18
108108

109109
### Dependencies
110110

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ requires = [
88
[tool.setuptools_scm]
99
write_to = "src/raman_fitting/_version.py"
1010
local_scheme = 'dirty-tag'
11-
fallback_version = '0.6.15'
11+
fallback_version = '0.6.18'
1212
#"write_to": "src/raman_fitting/_version.py"

setup.cfg

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.15
2+
current_version = 0.6.18
33
commit = True
44
tag = True
55
message = '{current_version} → {new_version}'
@@ -13,9 +13,9 @@ description = Python framework for the batch processing and deconvolution of ram
1313
long_description = file:README.md
1414
long_description_content_type = text/markdown
1515
url = https://github.com/MyPyDavid/raman-fitting.git
16-
project_urls =
16+
project_urls =
1717
Source Code = https://github.com/MyPyDavid/raman-fitting.git
18-
classifiers =
18+
classifiers =
1919
License :: OSI Approved :: MIT License
2020
Natural Language :: English
2121
Programming Language :: Python
@@ -30,15 +30,15 @@ classifiers =
3030

3131
[options]
3232
python_requires = >=3.7.0
33-
install_requires =
33+
install_requires =
3434
pandas >= 1.0.0
3535
scipy >= 1.5.2
3636
lmfit >= 1.0.0
3737
matplotlib >= 3.1.2
3838
numpy >= 1.19.2
3939
openpyxl >= 3.0.1
4040
include_package_data = True
41-
package_dir =
41+
package_dir =
4242
= src
4343
packages = find:
4444
setup_requires = setuptools_scm
@@ -48,7 +48,7 @@ setup_requires = setuptools_scm
4848

4949
[options.packages.find]
5050
where = src
51-
exclude =
51+
exclude =
5252
build*
5353
dist*
5454
docs*
@@ -57,18 +57,18 @@ exclude =
5757
tools*
5858

5959
[options.entry_points]
60-
console_scripts =
60+
console_scripts =
6161
raman_fitting = raman_fitting.interfaces:main
6262

6363
[options.extras_require]
64-
testing =
64+
testing =
6565
pytest
6666
pytest-cov
6767
pytest-flake8
6868
mock
6969
wheel
7070
pip>=19.1 # For proper file:// URLs support.
71-
dev =
71+
dev =
7272
isort
7373
pylint
7474
flake8
@@ -82,7 +82,7 @@ dev =
8282
test = pytest
8383

8484
[check-manifest]
85-
ignore =
85+
ignore =
8686
.github
8787
.github/*
8888

@@ -104,38 +104,38 @@ precision = 2
104104
omit = *migrations*
105105

106106
[coverage:paths]
107-
source =
107+
source =
108108
src
109109
*/site-packages
110110

111111
[coverage:run]
112112
branch = False
113-
source =
113+
source =
114114
src
115-
omit =
115+
omit =
116116
*/tests/*
117117
*/src/raman_fitting/*/_dev_*.py
118118
*/src/raman_fitting/*/_todo_*.py
119119
parallel = true
120120

121121
[coverage:report]
122-
exclude_lines =
122+
exclude_lines =
123123
pragma: no cover
124-
124+
125125
def __repr__
126126
if self\.debug
127-
127+
128128
raise AssertionError
129129
raise NotImplementedError
130-
130+
131131
if 0:
132132
if __name__ == .__main__.:
133133

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

137137
[flake8]
138-
ignore =
138+
ignore =
139139
E402,
140140
W503,
141141
W504,

src/raman_fitting/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
__version__ = version
1717
except:
18-
__version__ = "__version__ = '0.6.15'"
18+
__version__ = "__version__ = '0.6.18'"
1919

2020

2121
from raman_fitting.config import filepath_settings

0 commit comments

Comments
 (0)