Skip to content

Commit

Permalink
CHG: Pre-release updates
Browse files Browse the repository at this point in the history
- removed tox completely
- updated changelog
- relaxed test_filename test

On branch dev
Your branch is up to date with 'origin/dev'.

Changes to be committed:
	modified:   .gitlab-ci.yml
	modified:   CHANGELOG.md
	modified:   poetry.lock
	modified:   pyproject.toml
	modified:   syncopy.yml
	modified:   syncopy/tests/test_basedata.py
	deleted:    tox.ini
  • Loading branch information
tensionhead committed Aug 10, 2022
1 parent 7db6027 commit 39226c4
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 114 deletions.
5 changes: 0 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ intellinux:
- cd $TEST_DIR
- pytest -ra -k 'not parallel'
- pytest -ra -k 'paralel'
# - tox -p 0

powerlinux:
stage: single
Expand All @@ -52,9 +51,6 @@ powerlinux:
- cd $TEST_DIR
- pytest -ra -k 'not parallel'
- pytest -ra -k 'parallel'
# see https://github.com/conda/conda/issues/10178
# - conda install ruamel.yaml
# - tox -p 0

intelwin:
stage: single
Expand Down Expand Up @@ -102,7 +98,6 @@ m1macos:
- cd $TEST_DIR
- pytest -ra -k 'not parallel'
- pytest -ra -k 'parallel'
# - tox -p 0

slurmtest:
stage: slurm
Expand Down
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@ and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.ht



## [Unreleased]
## [2022.08] - 2022-08-10

### NEW
- Added down- and resampling algorithms for the new meta-function `resampledata`
- Added FOOOF method as a post-processing option for the freqanalysis method mtmfft.
- Added `load_tdt` to import data from the TDT system, thanks to @kajal5888
- new global `spy.copy()` function which copies entire Syncopy objects on disk
- Added `.info` attribute for all data classes to store auxiliary meta information
- Added `zscore` normalization to `preprocessing`

- new global `spy.copy()` function which copies entire Syncopy objects on disk

### CHANGED
- the `out.cfg` attached to an analysis result now allows to replay all analysis methods
Expand Down
77 changes: 1 addition & 76 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "esi-syncopy"
packages = [
{include = "syncopy"}
]
version = "2022.07.6"
version = "2022.08"
license = "BSD-3-Clause"
readme="README.rst"
homepage="https://syncopy.org"
Expand Down Expand Up @@ -44,7 +44,6 @@ pytest-cov = "^3.0.0"
sphinx-bootstrap-theme = ""
sphinx-automodapi = "^0.14.1"
flake8 = "^3.9"
tox = "^3.25.1"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
1 change: 0 additions & 1 deletion syncopy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ dependencies:
- ruamel.yaml >=0.16, < 0.17
- setuptools_scm
- sphinx_bootstrap_theme
- tox
- pip:
# Optional: only necessary when building the HTML documentation
- sphinx_automodapi
2 changes: 1 addition & 1 deletion syncopy/tests/test_basedata.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def test_trialdef(self):
def test_filename(self):
# ensure we're salting sufficiently to create at least `numf`
# distinct pseudo-random filenames in `__storage__`
numf = 10000
numf = 1000
dummy = AnalogData()
fnames = []
for k in range(numf):
Expand Down
26 changes: 0 additions & 26 deletions tox.ini

This file was deleted.

0 comments on commit 39226c4

Please sign in to comment.