-
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 pull request #6 from MilanSkocic/dev
0.8.2
- Loading branch information
Showing
71 changed files
with
18,910 additions
and
19,158 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,73 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ "main", "dev" ] | ||
pull_request: | ||
branches: [ "main", "dev" ] | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Gfortran | ||
run: | | ||
sudo update-alternatives \ | ||
--install /usr/bin/gcc gcc /usr/bin/gcc-10 100 \ | ||
--slave /usr/bin/gfortran gfortran /usr/bin/gfortran-10 \ | ||
--slave /usr/bin/gcov gcov /usr/bin/gcov-10 | ||
- name: Set FPM | ||
uses: fortran-lang/setup-fpm@v5 | ||
with: | ||
fpm-version: "v0.9.0" | ||
- name: Gfortran version | ||
run : gfortran --version | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Compile | ||
run: | | ||
. ./configure.sh | ||
make | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Gfortran | ||
run: | | ||
brew reinstall gcc@10 gcc@13 | ||
- name: Set FPM | ||
uses: fortran-lang/setup-fpm@v5 | ||
with: | ||
fpm-version: "v0.9.0" | ||
- name: Gfortran version | ||
run : gfortran --version | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Compile | ||
run: | | ||
. ./configure.sh | ||
make | ||
windows: | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
steps: | ||
- name: MSYS2, Gfortran, fpm | ||
uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: MINGW64 | ||
install: >- | ||
mingw-w64-x86_64-gcc-fortran | ||
mingw-w64-x86_64-fpm | ||
git | ||
make | ||
- name: Gfortran version | ||
run : gfortran --version | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Compile | ||
run: | | ||
. ./configure.sh | ||
make |
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
gcc>=9 | ||
gfortran>=9 | ||
gcc>=10 | ||
gfortran>=10 |
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
Binary file not shown.
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
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
Oops, something went wrong.