Skip to content
Closed
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
7 changes: 5 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
name: test python

on: [push, pull_request]
on:
pull_request:
types: [opened, reopened]
push:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

## [Unreleased]

## [0.5.1]

### Added
- return of from_topas3 method from older versions of attune, for backcompat

Expand Down Expand Up @@ -73,7 +75,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
### Added
- initial release after a major rewrite

[Unreleased]: https://github.com/wright-group/attune/compare/0.5.0...master
[Unreleased]: https://github.com/wright-group/attune/compare/0.5.1...master
[0.5.1]: https://github.com/wright-group/attune/compare/0.5.0...0.5.1
[0.5.0]: https://github.com/wright-group/attune/compare/0.4.5...0.5.0
[0.4.5]: https://github.com/wright-group/attune/compare/0.4.4...0.4.5
[0.4.4]: https://github.com/wright-group/attune/compare/0.4.3...0.4.4
Expand Down
2 changes: 1 addition & 1 deletion attune/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.5.1
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ def read(fname):
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
],
entry_points={"console_scripts": ["attune = attune._cli:main"]},
Expand Down
Loading