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

2024.09 #94

Merged
merged 6 commits into from
Sep 12, 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
4 changes: 2 additions & 2 deletions .github/workflows/python-package-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
xcode-version: [latest-stable, 14]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Configure xcode ${{ matrix.xcode-version }}
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-package-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Perl version for package build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
# Install test dependencies
CIBW_TEST_COMMAND: python -c "import freesas.test, sys; sys.exit(freesas.test.run_tests())"
# Skip tests for emulated architectures
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x}"
CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x} cp312-win_amd64"
WITH_QT_TEST: "False" # skip GUI tests
PYFAI_OPENCL: "False" # skip GPU tests
PYFAI_LOW_MEM: "True" # skip all tests >100Mb
Expand Down
1 change: 0 additions & 1 deletion ci/requirements_rtd.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
setuptools<60
sphinx
sphinxcontrib-programoutput
nbsphinx
Expand Down
3 changes: 2 additions & 1 deletion src/freesas/test/test_fitting.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__authors__ = ["Martha Brennich"]
__license__ = "MIT"
__date__ = "16/07/2021"
__date__ = "12/09/2024"


import unittest
Expand Down Expand Up @@ -337,6 +337,7 @@ def test_get_guinier_header_without_input_format(
msg="header for undefined format is correct",
)

@unittest.skipIf(platform.system() == "Windows", "Only POSIX")
def test_collect_files_only_returns_existing_files(self):

"""Test that collect_files discards strings that do not match an existing file."""
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
MAJOR = 2024
MINOR = 9
MICRO = 0
RELEV = "dev" # <16
RELEV = "final" # <16
SERIAL = 0 # <16

date = __date__
Expand Down
Loading