Skip to content

Commit cf8637b

Browse files
committed
build script
1 parent e11b5e8 commit cf8637b

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,17 @@ jobs:
1919
run: >-
2020
python3 -m
2121
pip install
22-
pip install numpy==2.3.1
2322
build twine
23+
- name: force Numpy version for build
24+
run: |
25+
python3 -m pip freeze
26+
python3 -m pip install numpy==2.3.1
27+
python3 -m pip freeze
2428
- name: Build and publish
2529
env:
2630
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
2731
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
2832
run: |
29-
pip freeze
33+
python3 -m pip freeze
3034
python3 -m build
3135
twine upload --repository pypi dist/*

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.14
8+
version: 1.0.15
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.14},
215+
title = {Fast Stylometry (Computer software), Version 1.0.15},
216216
year = {2024},
217217
url = {https://fastdatascience.com/fast-stylometry-python-library/},
218218
doi = {10.5281/zenodo.11096941},

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "faststylometry"
3-
version = "1.0.14"
3+
version = "1.0.15"
44
description = 'Python library for calculating the Burrows Delta.'
55
readme = "README.md"
66
keywords = ['stylometry', 'nlp', 'burrows delta', 'delta', 'forensic stylometry', 'natural language processing']

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.14"
30+
__version__ = "1.0.15"
3131

3232

3333
from faststylometry.corpus import Corpus

0 commit comments

Comments
 (0)