Skip to content

Commit b35083a

Browse files
committed
force numpy version again
1 parent e4478d9 commit b35083a

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ jobs:
1919
run: >-
2020
python3 -m
2121
pip install
22+
pip install numpy==2.3.1
2223
build twine
2324
- name: Build and publish
2425
env:
2526
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
2627
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
2728
run: |
29+
pip freeze
2830
python3 -m build
2931
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.13
8+
version: 1.0.14
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.13},
215+
title = {Fast Stylometry (Computer software), Version 1.0.14},
216216
year = {2024},
217217
url = {https://fastdatascience.com/fast-stylometry-python-library/},
218218
doi = {10.5281/zenodo.11096941},

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "faststylometry"
3-
version = "1.0.13"
3+
version = "1.0.14"
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']
@@ -28,7 +28,7 @@ classifiers = [
2828
"Intended Audience :: Information Technology",
2929
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3030
]
31-
# core dependencies of harmony
31+
# core dependencies
3232
# this set should be kept minimal!
3333
dependencies = [
3434
"numpy>=2.3.1; python_version >= '3.12'",
@@ -39,7 +39,7 @@ dependencies = [
3939

4040
[project.optional-dependencies]
4141

42-
# dev - the developer dependency set, for contributors to harmony
42+
# dev - the developer dependency set, for contributors to faststylometry
4343
dev = ["check-manifest", "pytest"]
4444

4545
[project.urls]

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.13"
30+
__version__ = "1.0.14"
3131

3232

3333
from faststylometry.corpus import Corpus

0 commit comments

Comments
 (0)