Skip to content

Commit afa7af8

Browse files
Fixed version comparison
1 parent 3f6e2dd commit afa7af8

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/publish-pkg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
5959
run: |
6060
# Extract version from built wheel
61-
WHEEL_VERSION=$(ls dist/*.whl | sed -E 's/.*-([0-9]+\.[0-9]+\.[0-9]+.*)-py3.*/\1/')
61+
WHEEL_VERSION=$(ls dist/*.whl | sed -E 's/.*pytanis-([^-]+)-.*/\1/')
6262
# Get tag without 'v' prefix
6363
TAG_VERSION=${GITHUB_REF_NAME#v}
6464

requirements.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
# - pytest-vcr
99
# - pytest-sugar
1010
# - hypothesis
11-
# - setuptools-scm
1211
# - pandas<3,>=2
1312
# - tomli
1413
# - pydantic>=2.5
@@ -271,7 +270,6 @@ packaging==25.0
271270
# matplotlib
272271
# nbconvert
273272
# pytest
274-
# setuptools-scm
275273
pandas==2.3.3
276274
# via
277275
# hatch.envs.default
@@ -407,8 +405,6 @@ seaborn==0.13.2
407405
# via pytanis
408406
send2trash==2.0.0
409407
# via jupyter-server
410-
setuptools-scm==9.2.2
411-
# via hatch.envs.default
412408
six==1.17.0
413409
# via
414410
# gspread-dataframe

0 commit comments

Comments
 (0)