-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/MilanSkocic/codata into dev
- Loading branch information
Showing
6 changed files
with
52 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Codata 0.8.2 Release Note | ||
============================ | ||
|
||
Summary | ||
--------------- | ||
|
||
* No API changes. | ||
* Improve Makefile for generating the source code at each compilation. | ||
* Source generator rewritten in Fortran. | ||
* Switch to pyproject.toml for the Python wrapper. | ||
* Minor fixes in documentation. | ||
|
||
Download | ||
--------------- | ||
|
||
`Codata Releases <https://github.com/MilanSkocic/codata/releases>`_ | ||
|
||
`PYPI <https://pypi.org/project/pycodata>`_ | ||
|
||
|
||
Contributors | ||
--------------- | ||
Milan Skocic | ||
|
||
Commits | ||
--------- | ||
|
||
**Full Changelog**: https://github.com/MilanSkocic/codata/compare/0.8.1...0.8.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name = "codata" | ||
version = "0.8.1" | ||
version = "0.8.2" | ||
license = "GNU General Public License v3 (GPLv3)" | ||
author = "Milan Skocic" | ||
maintainer = "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,24 @@ | ||
rd /s /q build | ||
rd /s /q dist | ||
rd /s /q pyiapws.egg-info | ||
del .\pyiapws\*.pyd | ||
|
||
py -3.11 setup.py sdist | ||
rd /s /q codata.egg-info | ||
del .\codata\*.pyd | ||
|
||
py -3.8 setup.py build_ext --inplace | ||
py -3.9 setup.py build_ext --inplace | ||
py -3.10 setup.py build_ext --inplace | ||
py -3.11 setup.py build_ext --inplace | ||
py -3.12 setup.py build_ext --inplace | ||
|
||
py -3.12 -m build --no-isolation --sdist | ||
|
||
py -3.8 setup.py bdist_wheel | ||
py -3.9 setup.py bdist_wheel | ||
py -3.10 setup.py bdist_wheel | ||
py -3.11 setup.py bdist_wheel | ||
py -3.8 -m build --no-isolation --wheel | ||
py -3.9 -m build --no-isolation --wheel | ||
py -3.10 -m build --no-isolation --wheel | ||
py -3.11 -m build --no-isolation --wheel | ||
py -3.12 -m build --no-isolation --wheel | ||
|
||
py -3.8 -m unittest -v | ||
py -3.9 -m unittest -v | ||
py -3.10 -m unittest -v | ||
py -3.11 -m unittest -v | ||
py -3.12 -m unittest -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Version module. | ||
""" | ||
__all__ = ["__version__"] | ||
__version__ = "0.8.1" | ||
__version__ = "0.8.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "pycodata" | ||
version = "0.8.1" | ||
version = "0.8.2" | ||
authors = [{name = "Milan Skocic", email = "[email protected]"}] | ||
description = "pycodata: CODATA constants for python." | ||
readme = "README.rst" | ||
|