Skip to content

Commit ceaf17e

Browse files
committed
version -> 1.0.11, force numpy==2.3.1 in build
1 parent cefc533 commit ceaf17e

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
python --version
2020
python -m pip install --upgrade pip
2121
pip install setuptools wheel twine
22+
pip install numpy==2.3.1
2223
- name: Build and publish
2324
env:
2425
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Thomas Andrew"
66
orcid: "https://orcid.org/0000-0001-8962-8571"
77
title: "Fast Stylometry (Computer software)"
8-
version: 1.0.10
8+
version: 1.0.11
99
doi: 10.5281/zenodo.11096941
1010
date-released: 2024-05-01
1111
url: "https://fastdatascience.com/fast-stylometry-python-library"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ A BibTeX entry for LaTeX users is:
212212
```
213213
@software{faststylometry,
214214
author = {Wood, T.A.},
215-
title = {Fast Stylometry (Computer software), Version 1.0.10},
215+
title = {Fast Stylometry (Computer software), Version 1.0.11},
216216
year = {2024},
217217
url = {https://fastdatascience.com/fast-stylometry-python-library/},
218218
doi = {10.5281/zenodo.11096941},

src/faststylometry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
'''
2929

30-
__version__ = "1.0.10"
30+
__version__ = "1.0.11"
3131

3232

3333
from faststylometry.corpus import Corpus

update_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@
5252
with open("pyproject.toml", "w", encoding="utf-8") as f:
5353
f.write("\n".join(pyproject_lines))
5454

55-
import os
56-
os.system(f'git add src/faststylometry/__init__.py CITATION.cff README.md pyproject.toml && git commit -m "Update version to {new_version}"')
55+
#import os
56+
#os.system(f'git add src/faststylometry/__init__.py CITATION.cff README.md pyproject.toml && git commit -m "Update version to {new_version}"')

0 commit comments

Comments
 (0)