Skip to content

Commit

Permalink
move from facsimile to ctl for package / release management
Browse files Browse the repository at this point in the history
  • Loading branch information
vegu committed Oct 23, 2019
1 parent fcaaf07 commit ef2afe4
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,9 +9,11 @@
- logparse `validate_interval`
- logparse `time_parser` config option
### Fixed
- mtr plugin py3 compatibility issues
- fileprobe lines that can't be processed are now skipped
- fix #62 timeseriesdb plugins crash when `update` is given `None` as a value
### Changed
- move from `facsimile` to `ctl` for package / release management
- parse_interval now can handle multiunit strings such as 1m30s
### Deprecated
### Removed
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions MANIFEST.in
@@ -1,5 +1,5 @@
include LICENSE
include README.md
recursive-include vaping *.py
recursive-include facsimile *.txt
include facsimile/VERSION
recursive-include Ctl *.txt
include Ctl/VERSION
2 changes: 1 addition & 1 deletion readthedocs.yml
@@ -1,3 +1,3 @@

requirements_file: facsimile/requirements-docs.txt
requirements_file: Ctl/requirements-docs.txt

6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -8,9 +8,9 @@ def read_file(name):


long_description = read_file("README.md")
version = read_file("facsimile/VERSION")
requirements = read_file("facsimile/requirements.txt").split('\n')
test_requirements = read_file("facsimile/requirements-test.txt").split('\n')
version = read_file("Ctl/VERSION")
requirements = read_file("Ctl/requirements.txt").split('\n')
test_requirements = read_file("Ctl/requirements-test.txt").split('\n')


setup(
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Expand Up @@ -8,12 +8,12 @@ passenv = CI TRAVIS*
setenv =
COVERAGE_FILE=.coverage.tox.{envname}
deps = setuptools>=3.4.4
-r{toxinidir}/facsimile/requirements.txt
-r{toxinidir}/facsimile/requirements-test.txt
-r{toxinidir}/facsimile/requirements-graphite.txt
-r{toxinidir}/Ctl/requirements.txt
-r{toxinidir}/Ctl/requirements-test.txt
-r{toxinidir}/Ctl/requirements-graphite.txt
commands =
py.test --cov={envsitepackagesdir}/vaping


[pytest]
norecursedirs = .facsimile .tox data gen
norecursedirs = .Ctl .tox data gen

0 comments on commit ef2afe4

Please sign in to comment.