Skip to content

Commit

Permalink
py311 not yet ready
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-jansen committed Oct 28, 2022
1 parent 8a9233e commit bc1c8ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 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, 311 ]
python: [ 37, 38, 39, 310 ]
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', '311' ]
python: [ 37, 38, 39, '310' ]

steps:
- name: Checkout bcolz
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', '3.11' ]
python-version: [ 3.7, 3.8, 3.9, '3.10' ]

steps:
- name: Checkout bcolz-zipline
Expand Down
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ So, the ultimate goal for bcolz is not only reducing the memory needs of large a
## Requisites

- Python >= 3.7
- NumPy >= 1.16.5
- NumPy >= 1.16.5, <1.23 (1.23 is not supported yet)
- Cython >= 0.22 (just for compiling the beast)
- C-Blosc >= 1.8.0 (optional, as the internal Blosc will be used by default)

Expand All @@ -75,10 +75,6 @@ pip install bcolz-zipline

Then also install NumPy with

```python
pip install "numpy<1.23"
```

and test your installation with

```python
Expand Down Expand Up @@ -129,7 +125,7 @@ After compiling, you can quickly check that the package is sane by running:

$ PYTHONPATH=. (or "set PYTHONPATH=." on Windows)
$ export PYTHONPATH (not needed on Windows)
$ python -c"import bcolz; bcolz.test()" # add `heavy=True` if desired
$ python -c "import bcolz; bcolz.test()" # add `heavy=True` if desired

## Installing

Expand Down

0 comments on commit bc1c8ae

Please sign in to comment.