Skip to content

Commit

Permalink
adding py311
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-jansen committed Oct 28, 2022
1 parent 9fc6825 commit 8a9233e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python: [ 37, 38, 39, 310 ]
python: [ 37, 38, 39, 310, 311 ]
manylinux_image: [ manylinux2010, manylinux2014 ]

steps:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
fail-fast: false
matrix:
os: [ macos-latest ]
python: [ 37, 38, 39, '310' ]
python: [ 37, 38, 39, '310', '311' ]

steps:
- name: Checkout bcolz
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: 3.9
python-version: '3.10'

- name: Build sdist
run: pipx run --spec build pyproject-build --sdist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
python-version: [ 3.7, 3.8, 3.9, '3.10', '3.11' ]

steps:
- name: Checkout bcolz-zipline
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[project]
name = "bcolz-zipline"
version = "1.2.5"
requires-python = ">=3.7"
dependencies = [
"numpy >=1.16, <1.23",
]

[build-system]
requires = [
Expand All @@ -16,6 +21,7 @@ requires = [
# https://github.com/python-versioneer/python-versioneer/issues/193
# build-backend = "setuptools.build_meta"


[tool.setuptools_scm]
write_to = "bcolz/version.py"
version_scheme = 'guess-next-dev'
Expand Down
6 changes: 2 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,15 @@ classifiers = Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

license = BSD
platforms = ['any']

[options]
python_requires = >=3.7
include_package_data = True
packages = find:
zip_safe = False
install_requires =
numpy >=1.16, <1.23

[options.extras_require]
optional =
Expand All @@ -48,7 +47,6 @@ test =
[options.package_data]
bcolz = carray_ext.pxd


[tools:pytest]
testpaths = bcolz/tests
addopts = -v

0 comments on commit 8a9233e

Please sign in to comment.