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
6 changes: 3 additions & 3 deletions .github/workflows/matrix-and-codecov-on-merge-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
env:
LATEST_PYTHON_VERSION: "3.12"
LATEST_PYTHON_VERSION: "3.13"
steps:
- name: Check out diffpy.pdfgui
uses: actions/checkout@v4
Expand All @@ -46,7 +46,7 @@ jobs:
run: |
conda install --file requirements/test.txt
conda install wxpython diffpy.utils matplotlib-base
pip install diffpy.pdffit2==1.4.4rc6
pip install diffpy.pdffit2==1.5.0rc1
python -m pip install . --no-deps

- name: Start Xvfb for ubuntu-latest only
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
auto-update-conda: true
environment-file: environment.yml
auto-activate-base: false
python-version: 3.12
python-version: 3.13

- name: Conda config
run: >-
Expand All @@ -35,8 +35,8 @@ jobs:
- name: Install diffpy.pdfgui and requirements
run: |
conda install --file requirements/test.txt
conda install wxpython diffpy.utils matplotlib-base gsl
pip install diffpy.pdffit2==1.4.4rc4
conda install wxpython diffpy.utils matplotlib-base
pip install diffpy.pdffit2==1.5.0rc1
python -m pip install . --no-deps

- name: Start Xvfb
Expand Down
23 changes: 23 additions & 0 deletions news/3.13.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* Added support for python 3.13

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ maintainers = [
description = "GUI for PDF simulation and structure refinement."
keywords = ['PDF structure refinement GUI']
readme = "README.rst"
requires-python = ">=3.11, <3.13"
requires-python = ">=3.11, <3.14"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
Expand All @@ -27,6 +27,7 @@ classifiers = [
'Operating System :: Unix',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
]
Expand Down
Loading