Skip to content

Commit

Permalink
Bump version: 0.2.0 → 0.3.0.a0
Browse files Browse the repository at this point in the history
  • Loading branch information
chanhosuh committed Nov 9, 2022
1 parent 80f1216 commit 4b60f36
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 60 deletions.
2 changes: 1 addition & 1 deletion curvesim/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.0"
__version__ = "0.3.0.a0"
__version_info__ = tuple(
int(num) if num.isdigit() else num for num in __version__.split(".")
)
117 changes: 58 additions & 59 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.3.0.a0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>.*)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{build}
Expand All @@ -11,32 +11,32 @@ tag = True
first_value = release
optional_value = release
values =
a
b
rc
release
a
b
rc
release

[bumpversion:part:build]

[flake8]
exclude =
env
git_hooks
.git
__pycache__
*.pyc
exclude =
env
git_hooks
.git
__pycache__
*.pyc
max-complexity = 10
max-line-length = 110
ignore =
W503
W504
E203
ignore =
W503
W504
E203

[tool:pytest]
addopts = -s
filterwarnings =
ignore::DeprecationWarning:eth_abi.*:
ignore::UserWarning:vyper.*:
filterwarnings =
ignore::DeprecationWarning:eth_abi.*:
ignore::UserWarning:vyper.*:

[bumpversion:file:curvesim/version.py]

Expand All @@ -51,53 +51,52 @@ author = Curve Research
author_email = help@curveresearch.org
license = MIT
license_file = LICENSE.md
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research :: Developers :: Financial and Insurance Industry
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research :: Developers :: Financial and Insurance Industry
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
project_urls =
Documentation = https://curvesim.readthedocs.io
Source = https://github.com/curveresearch/curvesim
Tracker = https://github.com/curveresearch/curvesim/issues

Documentation = https://curvesim.readthedocs.io
Source = https://github.com/curveresearch/curvesim
Tracker = https://github.com/curveresearch/curvesim/issues

[options]
packages = find:
python_requires = >= 3.8
install_requires =
numpy >= 1.22.0
pandas >= 1.3.5
scipy >= 1.7.2
gmpy2 >= 2.1.0
matplotlib >= 3.4.3
web3 >= 5.28.0
requests >= 2.26.0
python-dotenv >= 0.19.2
tenacity >= 8.1.0
install_requires =
numpy >= 1.22.0
pandas >= 1.3.5
scipy >= 1.7.2
gmpy2 >= 2.1.0
matplotlib >= 3.4.3
web3 >= 5.28.0
requests >= 2.26.0
python-dotenv >= 0.19.2
tenacity >= 8.1.0

[options.extras_require]
dev =
black==22.6.0
flake8==5.0.4
pylint==2.14.5
astroid==2.11.7
scriv==0.16.0
bump2version==1.0.1
pytest==7.1.3
hypothesis[numpy,pandas]==6.54.6
titanoboa @ git+https://github.com/vyperlang/titanoboa@ad59fd9a9dc72057dfffdbb6db455ae0ff0f96e8
py-evm==0.6.0a1
dev =
black==22.6.0
flake8==5.0.4
pylint==2.14.5
astroid==2.11.7
scriv==0.16.0
bump2version==1.0.1
pytest==7.1.3
hypothesis[numpy,pandas]==6.54.6
titanoboa @ git+https://github.com/vyperlang/titanoboa@ad59fd9a9dc72057dfffdbb6db455ae0ff0f96e8
py-evm==0.6.0a1

[options.packages.find]
exclude =
.github
data
git_hooks
results
test
exclude =
.github
data
git_hooks
results
test

0 comments on commit 4b60f36

Please sign in to comment.