Skip to content

Commit

Permalink
Bump version: 0.3.1 → 0.3.2, use setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
manycoding committed Apr 18, 2019
1 parent e7fa977 commit 216118c
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.3.2
commit = True
tag = True
parse = (?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)
Expand Down
13 changes: 0 additions & 13 deletions .drone.yml

This file was deleted.

10 changes: 9 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ Note that the top-most release is changes in the unreleased master branch on Git

[Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.2dev] (Work In Progress)

## [0.4.0] (Work In Progress)
### Added
### Changed
### Fixed
### Removed


## [0.3.2] (2019-04-18)
### Added
- Allow reading private raw schemas directly from bitbucket, #58

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
copyright = f"2018-{datetime.now().year}, Arche developers"
author = "Arche developers"

version = "0.3.1"
version = "0.3.2"
# The short X.Y version
version = version
# The full version, including alpha/beta/rc tags
Expand Down
49 changes: 48 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,49 @@
[metadata]
version = 0.3.1
name = arche
version = 0.3.2
description = Analyze Scrapy Cloud data
long_description = file: README.md, CHANGES.md
long_description_content_type = text/markdown
keywords = scrapinghub, scraping, data, data-visualization, data-analysis, pandas
maintainer = Scrapinghub, manycoding
maintainer_email = info@scrapinghub.com
url = http://github.com/scrapinghub/arche
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Programming Language :: Python :: 3.7

[options]
package_dir =
=src
packages = find:
setup_requires = setuptools_scm
install_requires =
pandas
scrapinghub[msgpack]
plotly>=3.8.0
genson
boto3
jsonschema[format]>=3.0.0
fastjsonschema
perfect-jsonschema
colorama
tqdm
ipywidgets
zip_safe = True

[options.extras_require]
tests =
pytest
pytest-mock
pytest-cov
pytest-pythonpath
pep8tests =
flake8
flake8-import-order
flake8-bugbear
black

[options.packages.find]
where = src
45 changes: 2 additions & 43 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,45 +1,4 @@
from setuptools import find_packages, setup
from setuptools import setup


install_requires = (
"pandas",
"scrapinghub[msgpack]",
"plotly>=3.8.0",
"genson",
"boto3",
"jsonschema[format]>=3.0.0",
"fastjsonschema",
"perfect-jsonschema",
"colorama",
"tqdm",
"ipywidgets",
)
dependency_links = ["https://github.com/ambv/black.git#egg=black"]


tests_require = ["pytest", "pytest-mock", "pytest-cov", "pytest-pythonpath"]


setup(
name="arche",
description="Analyze Scrapy Cloud data",
author="Scrapinghub",
license="MIT",
url="http://github.com/scrapinghub/arche",
platforms=["Any"],
packages=find_packages(where="src"),
package_dir={"": "src"},
zip_safe=True,
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
],
python_requires=">=3.7",
extras_require={
"tests": tests_require,
"pep8tests": ["flake8", "flake8-import-order", "flake8-bugbear", "black"],
},
tests_require=tests_require,
)
setup()
2 changes: 1 addition & 1 deletion src/arche/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

__version__ = "0.3.1"
__version__ = "0.3.2"
SH_URL = "https://app.scrapinghub.com/p" # noqa

from _plotly_future_ import v4 # noqa
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ xfail_strict = true
branch = true

[coverage:report]
fail_under = 61
fail_under = 62

0 comments on commit 216118c

Please sign in to comment.