Skip to content

Commit cf49b8b

Browse files
committed
Merge branch 'master' of github.com:InvestmentSystems/arraykit
2 parents 78d6d6b + d392f2e commit cf49b8b

File tree

12 files changed

+19
-14
lines changed

12 files changed

+19
-14
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-python@master
1818
with:
1919
python-version: 3.8
20-
- run: pip install -r requirements.txt
20+
- run: pip install -r requirements-build-backward.txt
2121
- run: python setup.py sdist
2222
- uses: actions/upload-artifact@master
2323
with:
@@ -44,7 +44,7 @@ jobs:
4444
output-dir: dist
4545
env:
4646
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
47-
CIBW_BEFORE_BUILD: pip install -r {project}/requirements-backward.txt
47+
CIBW_BEFORE_BUILD: pip install -r {project}/requirements-build-backward.txt
4848
CIBW_BUILD: cp${{ matrix.major }}${{ matrix.minor }}-*
4949
CIBW_BUILD_VERBOSITY: 1
5050
CIBW_BEFORE_TEST: pip install -r {project}/requirements-test-backward.txt
@@ -74,7 +74,7 @@ jobs:
7474
output-dir: dist
7575
env:
7676
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
77-
CIBW_BEFORE_BUILD: pip install -r {project}/requirements.txt
77+
CIBW_BEFORE_BUILD: pip install -r {project}/requirements-build.txt
7878
CIBW_BUILD: cp${{ matrix.major }}${{ matrix.minor }}-*
7979
CIBW_BUILD_VERBOSITY: 1
8080
CIBW_BEFORE_TEST: pip install -r {project}/requirements-test.txt

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ License
44

55
MIT License
66

7-
Copyright (c) 2012-2022 Research Affiliates
7+
Copyright (c) 2012-2022 Christopher Ariza, Research Affiliates, others
88

99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ ArrayKit requires the following:
3737
What is New in ArrayKit
3838
-------------------------
3939

40+
0.2.4
41+
............
42+
43+
Set NumPy minimum version at 1.18.5.
44+
45+
4046
0.2.3
4147
............
4248

requirements-backward.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

requirements-build-backward.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy==1.18.5

requirements-build.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy==1.22.4

requirements-test-backward.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
astroid==2.5.3
1+
numpy==1.18.5
22
pytest==7.1.2
3-
numpy==1.19.5
43
pylint==2.7.4
54
invoke==1.4.0
65
pandas==1.2.5

requirements-test.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
astroid==2.5.3
2-
pytest==7.1.2
31
numpy==1.22.4
2+
pytest==7.1.2
43
pylint==2.7.4
54
invoke==1.4.0
65
pandas==1.4.3

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
numpy==1.22.4
1+
numpy>=1.18.5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66
from pathlib import Path
77

8-
AK_VERSION = '0.2.3'
8+
AK_VERSION = '0.2.4'
99

1010
def get_long_description() -> str:
1111
return '''The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.

0 commit comments

Comments
 (0)