Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Oct 15, 2024
1 parent 6ca4386 commit fe15bc2
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 3 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,26 @@ jobs:
install-extras: tests,optional
os: ubuntu-latest
arch: auto
- python-version: '3.8'
install-extras: tests,optional
os: ubuntu-latest
arch: auto
- python-version: '3.9'
install-extras: tests,optional
os: ubuntu-latest
arch: auto
- python-version: '3.10'
install-extras: tests,optional
os: ubuntu-latest
arch: auto
- python-version: '3.11'
install-extras: tests,optional
os: ubuntu-latest
arch: auto
- python-version: '3.12'
install-extras: tests,optional
os: ubuntu-latest
arch: auto
- python-version: '3.13'
install-extras: tests,optional
os: ubuntu-latest
Expand All @@ -205,10 +221,26 @@ jobs:
install-extras: tests,optional
os: macos-13
arch: auto
- python-version: '3.8'
install-extras: tests,optional
os: macOS-latest
arch: auto
- python-version: '3.9'
install-extras: tests,optional
os: macOS-latest
arch: auto
- python-version: '3.10'
install-extras: tests,optional
os: macOS-latest
arch: auto
- python-version: '3.11'
install-extras: tests,optional
os: macOS-latest
arch: auto
- python-version: '3.12'
install-extras: tests,optional
os: macOS-latest
arch: auto
- python-version: '3.13'
install-extras: tests,optional
os: macOS-latest
Expand All @@ -217,10 +249,26 @@ jobs:
install-extras: tests,optional
os: windows-latest
arch: auto
- python-version: '3.8'
install-extras: tests,optional
os: windows-latest
arch: auto
- python-version: '3.9'
install-extras: tests,optional
os: windows-latest
arch: auto
- python-version: '3.10'
install-extras: tests,optional
os: windows-latest
arch: auto
- python-version: '3.11'
install-extras: tests,optional
os: windows-latest
arch: auto
- python-version: '3.12'
install-extras: tests,optional
os: windows-latest
arch: auto
- python-version: '3.13'
install-extras: tests,optional
os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ url = "https://github.com/Erotemic/xcookie"
description = "The xcookie cookie-cutter Module"
min_python = '3.7'
# Reduce the CI load of this package, only test on old and new python versions
ci_cpython_versions = ['3.7', '3.10', '3.13']
#ci_cpython_versions = ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
#ci_pypy_versions = 'auto'
ci_pypy_versions = []
typed=true
Expand Down
6 changes: 4 additions & 2 deletions requirements/runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,16 @@ PyYAML>=6.0 ; python_version < '3.12' # Py
argcomplete>=1.0

# xdev availpkg pandas --request_min=1.1.4
pandas>=1.5.0 ; python_version < '4.0' and python_version >= '3.11' # Python 3.11+
pandas>=2.2.3 ; python_version < '4.0' and python_version >= '3.13' # Python 3.13+
pandas>=1.5.0 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11+
pandas>=1.3.5 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
pandas>=1.4.0 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
pandas>=1.4.0 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
pandas>=1.2.0 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7.1
pandas>=1.1.4 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6.1

numpy>=1.26.0 ; python_version < '4.0' and python_version >= '3.12' # Python 3.12+
numpy>=2.1.2 ; python_version < '4.0' and python_version >= '3.13' # Python 3.13+
numpy>=1.26.0 ; python_version < '3.13' and python_version >= '3.12' # Python 3.12
numpy>=1.23.2 ; python_version < '3.12' and python_version >= '3.11' # Python 3.11
numpy>=1.21.6 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
numpy>=1.19.3 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
Expand Down

0 comments on commit fe15bc2

Please sign in to comment.