Skip to content

Commit

Permalink
turn off build wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Dec 28, 2023
1 parent edfacc1 commit a73ff52
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,24 @@ jobs:
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v3

build_wheels:
needs: [build]
if: startsWith( github.ref, 'refs/tags/')
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
# build_wheels:
# needs: [build]
# if: startsWith( github.ref, 'refs/tags/')
# name: Build wheels on ${{ matrix.os }}
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-22.04]

steps:
- uses: actions/checkout@v4
# steps:
# - uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
# - name: Build wheels
# uses: pypa/cibuildwheel@v2.16.2

- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
# - uses: actions/upload-artifact@v3
# with:
# path: ./wheelhouse/*.whl

build_sdist:
needs: [build]
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v2.5.5, 2023-12-27 -- bugfixes
v2.5.6, 2023-12-27 -- bugfixes
v2.5.4, 2023-12-22 -- bugfixes
v2.5.3, 2023-12-20 -- add projection and variance explained to fpca, add c version of rbfgs
v2.5.2, 2023-11-18 -- bugfixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ using functional component analysis and regression.

### Installation
------------------------------------------------------------------------------
v2.5.5 is on pip and can be installed using
v2.5.6 is on pip and can be installed using
> `pip install fdasrsf`
or conda
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
# The short X.Y version.
version = '2.5'
# The full version, including alpha/beta/rc tags.
release = '2.5.5'
release = '2.5.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fdasrsf"
version = "2.5.5"
version = "2.5.6"
description = "functional data analysis using the square root slope framework"
authors = [
{name = "J. Derek Tucker", email = "jdtuck@sandia.gov"}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build_sphinx]
project = 'fdasrvf'
version = 2.5
release = 2.5.5
release = 2.5.6
source-dir = doc/source
build-dir = doc/build
all_files = 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def run(self):
cmdclass={"build_ext": build_ext_with_blas, "build_docs": build_docs},
ext_modules=extensions,
name="fdasrsf",
version="2.5.5",
version="2.5.6",
packages=["fdasrsf"],
url="http://research.tetonedge.net",
license="LICENSE.txt",
Expand Down

0 comments on commit a73ff52

Please sign in to comment.