Skip to content

Commit 2447c95

Browse files
committed
0.1.10 RC 1
1 parent ac3fe8f commit 2447c95

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
os: [macOS, Ubuntu, Windows]
3232
major: [3]
33-
minor: [6, 7, 8]
33+
minor: [7, 8, 9, 10]
3434
runs-on: ${{ matrix.os }}-latest
3535
steps:
3636
- uses: actions/checkout@master
@@ -43,7 +43,7 @@ jobs:
4343
if: matrix.os == 'macOS' || matrix.os == 'Ubuntu'
4444
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
4545
if: matrix.os == 'Windows'
46-
- uses: joerick/cibuildwheel@v1.10.0
46+
- uses: pypa/cibuildwheel@v2.5.0
4747
with:
4848
output-dir: dist
4949
env:

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-2020 Research Affiliates
7+
Copyright (c) 2012-2022 Research Affiliates
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Dependencies
2828

2929
ArrayKit requires the following:
3030

31-
- Python >= 3.6
32-
- NumPy >= 1.17.4
31+
- Python >= 3.7
32+
- NumPy >= 1.18.5
3333

3434

3535

requirements-test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
astroid==2.5.3
2-
numpy==1.17.4
3-
pytest==3.8.0
2+
numpy==1.18.5
3+
pytest==4.6.11
44
pylint==2.7.4
55
invoke==1.4.0
66

requirements.txt

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

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import numpy as np # type: ignore
55

66

7-
AK_VERSION = '0.1.9'
7+
AK_VERSION = '0.1.10'
88

99

1010
def get_long_description() -> str:
@@ -32,8 +32,8 @@ def get_long_description() -> str:
3232
version=AK_VERSION,
3333
description='Array utilities for StaticFrame',
3434
long_description=get_long_description(),
35-
python_requires='>3.6.0',
36-
install_requires=['numpy>=1.17.4'],
35+
python_requires='>3.7.0',
36+
install_requires=['numpy>=1.18.5'],
3737
url='https://github.com/InvestmentSystems/arraykit',
3838
author='Christopher Ariza, Brandt Bucher, Charles Burkland',
3939
license='MIT',
@@ -46,9 +46,10 @@ def get_long_description() -> str:
4646
'Operating System :: MacOS :: MacOS X',
4747
'Operating System :: Microsoft :: Windows',
4848
'Operating System :: POSIX',
49-
'Programming Language :: Python :: 3.6',
5049
'Programming Language :: Python :: 3.7',
5150
'Programming Language :: Python :: 3.8',
51+
'Programming Language :: Python :: 3.9',
52+
'Programming Language :: Python :: 3.10',
5253
],
5354
keywords='numpy array',
5455
packages=['arraykit'],

0 commit comments

Comments
 (0)