Skip to content

Commit 2903c86

Browse files
authored
Bump version, add MT flag (#4)
2 parents bed79f6 + 519e9ea commit 2903c86

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

libjpeg/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import re
44

55

6-
__version__ = '1.0.0.dev0'
6+
__version__ = '1.0.0.dev1'
77

88

99
VERSION_PATTERN = r"""

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def get_mscv_args():
4646
'/GF-', # Disable string pooling
4747
'/GR', # Enable run-time type info
4848
'/RTC1', # Enable run-time error checking
49+
'/MT', # Create multithreading executable
4950
# /D defines constants and macros
5051
'/D_UNICODE',
5152
'/DUNICODE',
@@ -193,7 +194,7 @@ def get_source_files():
193194
zip_safe = False,
194195
python_requires = ">=3.6",
195196
setup_requires = ['setuptools>=18.0', 'cython', 'numpy'],
196-
install_requires = ['cython', "numpy"],
197+
install_requires = ["numpy"],
197198
cmdclass = {'build': build},
198199
ext_modules = extensions,
199200
)

0 commit comments

Comments
 (0)