Skip to content

Commit

Permalink
Merge pull request #159 from JaneliaSciComp/develop
Browse files Browse the repository at this point in the history
Updates for python 3.10
  • Loading branch information
boazmohar authored Sep 19, 2022
2 parents a67af51 + 63915b5 commit af8cc36
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 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.0.7
current_version = 0.0.8
commit = True
tag = True

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: |
pip install -r requirements-dev.txt
py.test -s -v --cov-config .coveragerc --cov=pywavesurfer --flake8
py.test -s -v --cov-config .coveragerc --cov=pywavesurfer
- name: Coveralls Parallel
if: matrix.os == 'ubuntu-latest'
uses: AndreMiras/coveralls-python-action@develop
Expand Down
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@ Version History

0.0.3 Aug 23, 2018 Added test for WS 0.97 data files, changed an exception to a warning, updated dependencies.

0.0.5 Oct 22, 2020 Added test for WS 1.0.2 data files, fixed version checking bug, updated dependencies, drop python 2.
0.0.5 Oct 22, 2020

0.0.6 Oct 14, 2021 Updated dependencies, drop python 3.6, added 3.9. Moved CI/CD to Github Actions.
0.0.6 Oct 14, 2021 Updated dependencies, drop python 3.6, added 3.9. Moved CI/CD to Github Actions.

0.0.7 Oct 14, 2021 Updated dependencies, added context manager to h5py open.
0.0.7 Oct 14, 2021 Updated dependencies, added context manager to h5py open.

0.0.8 Sep 19, 2022 Updated dependencies, drop python 3.7, added 3.10.

.. |Updates| image:: https://pyup.io/repos/github/JaneliaSciComp/PyWaveSurfer/shield.svg
:target: https://pyup.io/repos/github/JaneliaSciComp/PyWaveSurfer/
Expand Down
11 changes: 5 additions & 6 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
bump2version==1.0.1
h5py==3.5.0
numpy==1.21.3
packaging==21.2
pytest==6.2.5
pytest-flake8==1.0.7
numpy==1.23.3
h5py==3.7.0
packaging==21.3
pytest==7.1.3
pytest-cov==3.0.0
coveralls==3.2.0
coveralls==3.3.1
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
h5py==3.5.0
numpy==1.21.3
packaging==21.2
numpy==1.23.3
h5py==3.7.0
packaging==21.3
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,18 @@
setup(
name='pywavesurfer',
packages=['pywavesurfer'],
version='0.0.7',
version='0.0.8',
description="Python package for reading WaveSurfer data files",
long_description=long_description,
author='Adam L. Taylor, Boaz Mohar',
author_email='taylora@janelia.hhmi.org, boazmohar@gmail.com',
url='https://github.com/JaneliaSciComp/PyWaveSurfer',
download_url='https://github.com/JaneliaSciComp/PyWaveSurfer/archive/v0.0.7.tar.gz',
download_url='https://github.com/JaneliaSciComp/PyWaveSurfer/archive/v0.0.8.tar.gz',
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=requires,
extras_require={
Expand Down

0 comments on commit af8cc36

Please sign in to comment.