Skip to content

Commit

Permalink
change install action command
Browse files Browse the repository at this point in the history
  • Loading branch information
jat255 committed Jan 8, 2025
1 parent 497d1ed commit b44334e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.12", "3.13"]
steps:
- name: Checkout latest commit
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -r requirements.txt
run: pip install .
- name: Test script
run: fit-file-faker -h
3 changes: 2 additions & 1 deletion .github/workflows/publish_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,5 @@ jobs:
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
repository-url: https://test.pypi.org/legacy/
verbose: true
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "fit-file-faker"
version = "0.2.0"
version = "0.2.0_dev"
description = "A small tool to edit and upload FIT files to Garmin Connect"
authors = [
{ name="Josh Taillon", email="[email protected]" },
Expand Down Expand Up @@ -33,7 +33,7 @@ Homepage = "https://github.com/jat255/Fit-File-Faker"
Issues = "https://github.com/jat255/Fit-File-Faker/issues"

[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"

[project.scripts]
Expand Down

0 comments on commit b44334e

Please sign in to comment.