Skip to content

Commit

Permalink
preparing for release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Espen Flage-Larsen committed Nov 21, 2019
1 parent 5bc06de commit b0efd37
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## [2.0.0]
### Changed
- Removed all optional GPL licenced routines (GSL, Einspline, Cubature, ALGLIB and PythTB)
- Changed license from GPLv3 to BSD 3-clause
- Smaller changes in the documentation (had to remove references to make it compile with numpydoc)
- Removed functionality to calculate the closed Fermi Dirac integrals and the tests that depended on this
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,17 @@

# General information about the project.
project = u'T4ME'
copyright = u'2019, Espen Flage-Larsen'
copyright = u'2016, Espen Flage-Larsen'
author = u'Espen Flage-Larsen'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '1.1'
version = '2.0'
# The full version, including alpha/beta/rc tags.
release = '1.1.1'
release = '2.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Physics"
],
Expand Down Expand Up @@ -43,5 +43,5 @@
"numpy"
],
"url": "https://github.com/espenfl/t4me",
"version": "1.1.1"
"version": "2.0.0"
}
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"""

import os
import sys
import json
import tempfile
from setuptools import setup, find_packages, Extension
Expand Down Expand Up @@ -215,6 +216,9 @@ def _do_setup(extensions):
ext_modules = None
else:
ext_modules = extensions
if "--no-extensions" in sys.argv:
ext_modules = None
sys.argv.remove("--no-extensions")

with open(SETUP_JSON_PATH, 'r') as info:
SETUP_KWARGS = json.load(info)
Expand Down
2 changes: 1 addition & 1 deletion src/t4me/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""T4ME - Transport 4 MatErials - a code to calculate the electronic transport coefficients of materials."""

__version__ = '1.1.1'
__version__ = '2.0.0'

0 comments on commit b0efd37

Please sign in to comment.