Skip to content

Commit

Permalink
Fixing version numbers in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
swansonk14 committed Aug 4, 2024
1 parent bb22e26 commit c1a153b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022 Kyle Swanson
Copyright (c) 2024 Kyle Swanson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import find_packages, setup

# Load version number
__version__ = None
__version__: str | None = None

src_dir = Path(__file__).parent.absolute()
version_file = src_dir / 'p_tqdm' / '_version.py'
Expand All @@ -16,14 +16,14 @@

setup(
name='p_tqdm',
version='1.4.0',
version=__version__,
author='Kyle Swanson',
author_email='[email protected]',
description='Parallel processing with progress bars',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/swansonk14/p_tqdm',
download_url='https://github.com/swansonk14/p_tqdm/v_1.3.3.tar.gz',
download_url=f'https://github.com/swansonk14/p_tqdm/v_{__version__}.tar.gz',
license='MIT',
packages=find_packages(),
install_requires=[
Expand All @@ -34,10 +34,11 @@
tests_require=['pytest'],
classifiers=[
'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',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
Expand Down

0 comments on commit c1a153b

Please sign in to comment.