Skip to content

Commit

Permalink
'4.0.1 → 4.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliacomi committed Feb 24, 2022
1 parent 44d47d3 commit 0473273
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion conda_recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pygaps" %}
{% set version = "4.0.1" %}
{% set version = "4.0.2" %}

package:
name: "{{ name|lower }}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/pygaps/_version.py"
local_scheme = 'dirty-tag'
fallback_version = '4.0.1'
fallback_version = '4.0.2'

# linting: pylint
[tool.pylint.basic]
Expand Down
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.0.1
current_version = 4.0.2
commit = True
tag = False
message = '{current_version} → {new_version}'
Expand All @@ -16,10 +16,10 @@ author_email = [email protected]
license = MIT license
license_files = LICENSE
url = https://github.com/pauliacomi/pygaps
project_urls =
project_urls =
Documentation = https://pygaps.readthedocs.io
Source Code = https://github.com/pauliacomi/pygaps
classifiers =
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Expand All @@ -37,18 +37,18 @@ classifiers =
Topic :: Scientific/Engineering :: Chemistry

[options]
package_dir =
package_dir =
=src
packages = find:
python_requires = >=3.7
zip_safe = True
include_package_data = True
tests_require =
tests_require =
pytest
pytest-cov
coverage[toml]
nose
install_requires =
install_requires =
numpy >= 1.16.5
scipy >= 1.6
pandas
Expand All @@ -70,11 +70,11 @@ pygaps.data = *
pygaps.data.kernels = *.csv

[options.entry_points]
console_scripts =
console_scripts =
pygaps = pygaps.cli:main

[options.extras_require]
dev =
dev =
yapf
isort
pylint
Expand All @@ -84,7 +84,7 @@ dev =
bump2version
pygments
docutils
docs =
docs =
pygments >= 2.11
docutils >= 0.11
doc8
Expand Down Expand Up @@ -113,7 +113,7 @@ search = version = "{current_version}"
replace = version = "{new_version}"

[flake8]
ignore =
ignore =
E402
W503
W504
Expand Down
2 changes: 1 addition & 1 deletion src/pygaps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ._version import version
__version__ = version
except ImportError:
__version__ = '4.0.1'
__version__ = '4.0.2'

import sys
from .logging import logger
Expand Down

0 comments on commit 0473273

Please sign in to comment.