Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update minimum supported python to 3.9 #71

Merged
merged 4 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

strategy:
matrix:
python-version: [3.8, 3.11]
python-version: [3.9, 3.11]

runs-on: ubuntu-latest
steps:
Expand All @@ -53,7 +53,7 @@ jobs:
pip install numpy
pip install cython
pip install h5py
pip install --use-deprecated=legacy-resolver -e .
pip install --use-deprecated=legacy-resolver -e . --no-binary bitshuffle
pip install pytest

- name: Run tests
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
pip install numpy
pip install cython
pip install h5py
pip install --use-deprecated=legacy-resolver -e .
pip install --use-deprecated=legacy-resolver -e . --no-binary bitshuffle
pip install -r doc/requirements.txt

- name: Build sphinx docs
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ chimedb.data_index @ git+https://github.com/chime-experiment/chimedb_di.git
chimedb.dataflag @ git+https://github.com/chime-experiment/chimedb_dataflag.git
chimedb.dataset @ git+https://github.com/chime-experiment/chimedb_dataset.git
matplotlib
numpy >= 1.16
numpy >= 1.16,<2
scipy
networkx >= 2.0
h5py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=requires,
extras_require={
"chimedb_config": [
Expand Down
Loading