Skip to content

Commit

Permalink
Update Python versions in setup.py
Browse files Browse the repository at this point in the history
* make pydicom versions in build name more obvious
  • Loading branch information
darcymason authored and bastula committed Jan 9, 2025
1 parent 5e0a73a commit f8d07ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
pydicom-version: ["latest"]
pydicom-version: ["pydicom-latest"]
include:
- python-version: "3.10"
pydicom-version: "2.4"
pydicom-version: "pydicom~=2.4.4"
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Force pydicom version if needed
if: startsWith(matrix.pydicom-version, '2')
run: |
pip install -U pydicom==${{ matrix.pydicom-version }}
pip install -U "${{ matrix.pydicom-version }}"
- name: Run tests via coverage
run: |
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,10 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Physics'
],
Expand Down

0 comments on commit f8d07ee

Please sign in to comment.