Skip to content

Commit

Permalink
Modernize packaging (#12)
Browse files Browse the repository at this point in the history
* Fix up packaging
* drop python 3.7 support
  • Loading branch information
IAlibay authored Apr 30, 2024
1 parent 1b3e9c0 commit be8b8ad
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 2,987 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
9 changes: 7 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ The rules for this file:

------------------------------------------------------------------------------

* 1.0.0
* 0.3.0

* Added various flake8 / pep8 fixes.
* Switch fully to pyproject.toml setup
* Remove support for Python 3.7

* 0.2.0

* Add Python 3.12 support
7 changes: 2 additions & 5 deletions mda_xdrlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
from . import xdrlib
from . import _version
from importlib.metadata import version


__version__ = _version.get_versions()['version']

from . import _version
__version__ = _version.get_versions()['version']
__version__ = version("mda_xdrlib")
Loading

0 comments on commit be8b8ad

Please sign in to comment.