Skip to content

Commit 1919947

Browse files
authored
Merge pull request #57 from rstoneback/develop
v1.0.1 Bugfixes
2 parents 591d248 + 1d09b8a commit 1919947

6 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.0.1] - 2022-01-04
6+
- Added pyproject.toml to support systems without numpy.
7+
- Modified manifest.ini to include version.txt
8+
- Corrected bad link in build status badge
9+
- Corrected BSD license classifier
10+
511
## [1.0.0] - 2021-12-24
612
- Updated vector basis algorithm and reduced uncertainty when
713
scaling ion drifts and electric fields for multipole fields by four orders of magnitude.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include LICENSE
22
include CONTRIBUTING.md
3+
include OMMBV/version.txt

OMMBV/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""init routine for OMMBV."""
33

4-
__version__ = '1.0.0'
4+
__version__ = '1.0.1'
55

66
try:
77
from OMMBV import igrf

OMMBV/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel", "Cython", "numpy"]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ classifiers =
1111
Development Status :: 5 - Production/Stable
1212
Topic :: Scientific/Engineering :: Physics
1313
Intended Audience :: Science/Research
14-
License :: OSI Approved :: BSD
14+
License :: OSI Approved :: BSD License
1515
Natural Language :: English
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3.8

0 commit comments

Comments
 (0)