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

Drop python 3.9 and loosen requirement of numpy #962

Merged
merged 2 commits into from
Jan 24, 2025
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
4 changes: 1 addition & 3 deletions .github/workflows/pypi_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: "3.10"
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
Expand All @@ -23,8 +23,6 @@ jobs:
run: python -m build
# Do the publish
- name: Publish a Python distribution to PyPI
# Might want to add but does not work on workflow_dispatch :
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: ${{ secrets.pipy_token }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10"]
test: ['coveralls', 'pytest']
python-version: ["3.10", "3.11"]
test: ["coveralls", "pytest"]
# Installation on py3.10 is rather slow at the moment
exclude:
- python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10"]
python-version: ["3.10", "3.11"]
steps:
- name: Setup python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build:
apt_packages:
- graphviz
tools:
python: "3.9"
python: "3.10"

python:
install:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {"https://docs.python.org/": None}
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}


def write_contributing():
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
Expand All @@ -23,7 +24,7 @@ repository = "https://github.com/AxFoundation/strax"
rechunker = "strax.scripts.rechunker:main"

[tool.poetry.dependencies]
python = ">=3.6,<3.13"
python = ">=3.10,<3.13"
blosc = "*"
click = "*"
deepdiff = "*"
Expand All @@ -33,7 +34,7 @@ immutabledict = "*"
lz4 = "*"
numba = ">=0.43.1"
numexpr = "*"
numpy = ">=1.18.5,<2.0.0"
numpy = ">=1.18.5"
packaging = "*"
pandas = "*"
psutil = "*"
Expand Down
Loading