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

Bump to v1.6.0, drop py3.8 #792

Merged
merged 8 commits into from
Jan 16, 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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.5
current_version = 1.6.0
files = setup.py strax/__init__.py docs/source/conf.py
commit = True
tag = True
2 changes: 1 addition & 1 deletion .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.8'
python-version: '3.9'
- name: Checkout repo
uses: actions/checkout@v4
- name: Install dependencies
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,11 +21,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10"]
python-version: [3.9, "3.10"]
test: ['coveralls', 'pytest']
# Installation on py3.10 is rather slow at the moment
exclude:
- python-version: "3.10"
- python-version: "3.11"
test: coveralls
steps:
- name: Checkout repo
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.8, 3.9, "3.10"]
python-version: [3.9, "3.10"]
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.8"
python: "3.9"

python:
install:
Expand Down
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.6.0 / 2024-01-15
---------------------
* `np.float` is deprecated by @dachengx in https://github.com/AxFoundation/strax/pull/789
* Update pymongo and solve the error of pytest by @dachengx in https://github.com/AxFoundation/strax/pull/791


**Full Changelog**: https://github.com/AxFoundation/strax/compare/v1.5.5...v1.5.6


1.5.5 / 2023-12-21
---------------------
* Update readthedocs configuration by @dachengx in https://github.com/AxFoundation/strax/pull/763
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = "1.5.5"
version = "1.6.0"
# The full version, including alpha/beta/rc tags.
release = "1.5.5"
release = "1.6.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def open_requirements(path):

setuptools.setup(
name="strax",
version="1.5.5",
version="1.6.0",
description="Streaming analysis for xenon TPCs",
author="strax developers",
url="https://github.com/AxFoundation/strax",
Expand All @@ -42,7 +42,6 @@ def open_requirements(path):
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
Expand Down
2 changes: 1 addition & 1 deletion strax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flake8: noqa
__version__ = "1.5.5"
__version__ = "1.6.0"

# Glue the package together
# See https://www.youtube.com/watch?v=0oTh1CXRaQ0 if this confuses you
Expand Down