Skip to content
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
1 change: 0 additions & 1 deletion .github/workflows/tests-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
project: diffpy.cmi
c_extension: false
headless: false
python_version: 3.13
run: |
set -Eeuo pipefail
echo "Test cmds"
Expand Down
6 changes: 3 additions & 3 deletions news/bump-version.rst → news/windows-ci.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Added:**

* Add support for Python 3.14
* <news item>

**Changed:**

Expand All @@ -12,11 +12,11 @@

**Removed:**

* Remove support for Python 3.11
* <news item>

**Fixed:**

* <news item>
* Fixed how paths are handled in tests for different operating systems.

**Security:**

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ maintainers = [
description = "Complex modeling infrastructure: a modular framework for multi-modal modeling of scientific data."
keywords = ['modelling', 'regression', 'diffraction', 'PDF', 'complex-modeling']
readme = "README.rst"
requires-python = ">=3.12, <3.15"
requires-python = ">=3.11, <3.14"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
Expand All @@ -25,9 +25,9 @@ classifiers = [
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
]
Expand Down
5 changes: 3 additions & 2 deletions tests/test_packsmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ def paths_and_names_match(expected, actual, root):
for (exp_name, exp_path), (act_name, act_path) in zip(expected, actual):
if exp_name != act_name:
return False
actual_rel_path = str(act_path.relative_to(root))
if actual_rel_path != exp_path:
actual_rel_path = act_path.relative_to(root).as_posix()
expected_path_norm = Path(exp_path).as_posix()
if actual_rel_path != expected_path_norm:
return False
return True

Expand Down
Loading