Skip to content

Commit

Permalink
Merge pull request #93 from jitseniesen/spyder6
Browse files Browse the repository at this point in the history
PR: Update to released version of Spyder 6
  • Loading branch information
jitseniesen authored Sep 3, 2024
2 parents ce5897d + 7af837b commit 80ac182
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
OS: ['ubuntu', 'macos', 'windows']
PYTHON_VERSION: ['3.9', '3.10', '3.11']
SPYDER_SOURCE: ['git']
SPYDER_SOURCE: ['conda', 'git']
name: ${{ matrix.OS }} py${{ matrix.PYTHON_VERSION }} spyder-from-${{ matrix.SPYDER_SOURCE }}
runs-on: ${{ matrix.OS }}-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion requirements/conda.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
line_profiler
spyder>=6.0.0.dev0,<7
spyder>=6,<7
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ def get_package_data(name, extlist):


# Requirements
REQUIREMENTS = ['line_profiler', 'qtawesome', 'spyder>=6.0.0.dev0,<7']
REQUIREMENTS = ['line_profiler', 'qtawesome', 'spyder>=6,<7']
EXTLIST = ['.jpg', '.png', '.json', '.mo', '.ini']
LIBNAME = 'spyder_line_profiler'


LONG_DESCRIPTION = """
This is a plugin for the Spyder 5 IDE that integrates the Python line profiler.
This is a plugin for the Spyder IDE that integrates the Python line profiler.
It allows you to see the time spent in every line.
Usage
Expand All @@ -72,14 +72,14 @@ def get_package_data(name, extlist):
install_requires=REQUIREMENTS,
url='https://github.com/spyder-ide/spyder-line-profiler',
license='MIT',
python_requires='>= 3.7',
python_requires='>= 3.8',
entry_points={
"spyder.plugins": [
"spyder_line_profiler = spyder_line_profiler.spyder.plugin:SpyderLineProfiler"
],
},
author="Spyder Project Contributors",
description='Plugin for the Spyder 5 IDE that integrates the Python line profiler.',
description='Plugin for the Spyder IDE that integrates the Python line profiler.',
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
Expand All @@ -89,9 +89,10 @@ def get_package_data(name, extlist):
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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',
'Topic :: Software Development',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'])

0 comments on commit 80ac182

Please sign in to comment.