Skip to content

Commit

Permalink
prepare 0.9.1 (version changes)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrybakov committed Nov 5, 2024
1 parent 8fc87c8 commit e2ed6f6
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
python-version:
description: 'Python version'
required: true
default: '3.11'
default: '3.13'
type: string

jobs:
Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/test-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,24 @@ jobs:
test-38:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.8'
python-version: '3.9'

test-39:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.9'
python-version: '3.10'

test-310:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.10'
python-version: '3.11'

test-311:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.11'
python-version: '3.12'

test-311:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.13'
13 changes: 9 additions & 4 deletions .github/workflows/test-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,24 @@ jobs:
test-38:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.8'
python-version: '3.9'

test-39:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.9'
python-version: '3.10'

test-310:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.10'
python-version: '3.11'

test-311:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.11'
python-version: '3.12'

test-311:
uses: adrybakov/rad-tools/.github/workflows/run-tests.yml@stable
with:
python-version: '3.13'
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Installation

Requirement for RAD-tools installation are:

* Python (>=3.8)
* NumPy
* Python (>=3.9)
* NumPy (<2)
* SciPy
* matplotlib
* tqdm
Expand Down
5 changes: 5 additions & 0 deletions docs/source/release-notes/0.9.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ execute::
instead of::

rad-plot-dos.py

0.9.1
-----

Pin numpy at ``numpy<2``. Remove tests for python3.8 and add tests for python3.13.
4 changes: 2 additions & 2 deletions docs/source/user-guide/start/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Installation

Requirement for RAD-tools installation are:

* |Python|_ (>=3.8)
* |NumPy|_
* |Python|_ (>=3.9)
* |NumPy|_ (<2)
* |SciPy|_
* |matplotlib|_
* |tqdm|_
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ name = "rad-tools"
license = { text = "MIT license" }
dynamic = ["version"]
description = "Sandbox (mainly condense matter plotting)"
dependencies = ["numpy", "matplotlib", "scipy", "tqdm", "termcolor"]
dependencies = ["numpy<2", "matplotlib", "scipy", "tqdm", "termcolor"]
authors = [{ name = "Andrey Rybakov", email = "[email protected]" }]
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.rst"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Package dependencies
numpy
numpy<2
scipy
matplotlib
tqdm
Expand Down

0 comments on commit e2ed6f6

Please sign in to comment.