Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not build wheel for python 2, restrict to >=3.7 #642

Merged
merged 3 commits into from
Jul 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# HDMF Changelog

## Upcoming (TBD)

### Bug fixes
- Do not build wheels compatible with Python 2 because HDMF requires Python 3.7. @rly (#642)

## HDMF 3.0.1 (July 7, 2021)

### Bug fixes
- Fixed release CI that prevented distribution from being uploaded to PyPI. @rly (#641)

## HDMF 3.0.0 (July 6, 2021)

### New features
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
macOS-py3.9-upgrade-dev:
imageName: 'macos-10.15'
pythonVersion: '3.9'
testToxEnv: 'py39'
buildToxEnv: 'build-py39'
testToxEnv: 'py39-upgrade-dev'
buildToxEnv: 'build-py39-upgrade-dev'
testWheelInstallEnv: 'wheelinstall'

macOS-py3.8:
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[bdist_wheel]
universal = 1

[versioneer]
VCS = git
versionfile_source = src/hdmf/_version.py
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
'packages': pkgs,
'package_dir': {'': 'src'},
'package_data': {'hdmf': ["%s/*.yaml" % schema_dir, "%s/*.json" % schema_dir]},
'python_requires': '>=3.7',
'classifiers': [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
Expand Down