Skip to content

Commit

Permalink
update version number; allow pandas v2; try testing 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Oct 17, 2024
1 parent 9dc7622 commit 0e3c628
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion acro/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""ACRO version number."""

__version__ = "0.4.6"
__version__ = "0.4.7"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# -- Project information -----------------------------------------------------

project = "ACRO"
copyright = "2023, ACRO Project Team"
copyright = "2024, ACRO Project Team"
author = "ACRO Project Team"
release = __version__

Expand Down
10 changes: 5 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = acro
version = 0.4.6
version = 0.4.7
description = ACRO: Tools for the Automatic Checking of Research Outputs
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -10,16 +10,16 @@ maintainer_email = james.smith@uwe.ac.uk
license = MIT
license_files = LICENSE.md
classifiers =
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
Operating System :: OS Independent
Expand All @@ -36,7 +36,7 @@ project_urls =
Discussions = https://github.com/AI-SDC/ACRO/discussions

[options]
python_requires = >=3.8
python_requires = >=3.9
zip_safe = False
include_package_data = True
packages = find:
Expand All @@ -45,7 +45,7 @@ install_requires =
matplotlib
numpy<2.0.0
openpyxl
pandas~=1.5.0
pandas>1.5.0,<2.3
PyYAML
statsmodels

Expand Down

0 comments on commit 0e3c628

Please sign in to comment.