File tree Expand file tree Collapse file tree 5 files changed +6
-12
lines changed Expand file tree Collapse file tree 5 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -119,14 +119,14 @@ jobs:
119119 mv source-distribution/*.tar.gz wheel-*/*.whl dist
120120
121121 - name : Publish distribution 📦 to Test PyPI
122- if : ${{ github.ref != 'refs/tags/v1.3.3 ' }}
122+ if : ${{ github.ref != 'refs/tags/v1.3.4 ' }}
123123 uses : pypa/gh-action-pypi-publish@master
124124 with :
125125 password : ${{ secrets.TEST_PYPI_TOKEN }}
126126 repository_url : https://test.pypi.org/legacy/
127127
128128 - name : Publish distribution 📦 to PyPI
129- if : ${{ github.ref == 'refs/tags/v1.3.3 ' }}
129+ if : ${{ github.ref == 'refs/tags/v1.3.4 ' }}
130130 uses : pypa/gh-action-pypi-publish@master
131131 with :
132132 password : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change 11cmake_minimum_required (VERSION 3.12)
22project (
33 so3
4- VERSION "1.3.3 "
4+ VERSION "1.3.4 "
55 DESCRIPTION "Fast and exact Wigner transforms"
66 HOMEPAGE_URL "http://astro-informatics.github.io/so3/"
77 LANGUAGES C)
Original file line number Diff line number Diff line change 44CC = gcc
55
66# OPT = -Wall -O3 -fopenmp -DSO3_VERSION=\"0.1\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
7- OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.3 \" -DSO3_BUILD=\"` git rev-parse HEAD ` \"
7+ OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.4 \" -DSO3_BUILD=\"` git rev-parse HEAD ` \"
88
99
1010# ======== LINKS ========
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.3.3
2+ current_version = 1.3.4
33commit = False
44tag = False
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
66serialize =
77 {major}.{minor}.{patch}rc{rc}
88 {major}.{minor}.{patch}
99
10- [bumpversion:file:README.md]
11-
1210[bumpversion:file:setup.py]
1311
14- [bumpversion:file:conanfile.py]
15-
1612[bumpversion:file:makefile]
1713
1814[bumpversion:file:CMakelists.txt]
1915
20- [bumpversion:file:.github/workflows/conan.yml]
21-
2216[bumpversion:file:.github/workflows/python.yml]
2317
2418[flake8]
Original file line number Diff line number Diff line change 88
99setup (
1010 name = "so3" ,
11- version = "1.3.3 " ,
11+ version = "1.3.4 " ,
1212 author = "Jason McEwen" ,
1313 install_requires = ["numpy" , "scipy" ],
1414 extras_require = {
You can’t perform that action at this time.
0 commit comments