Skip to content

Commit

Permalink
Extra cleanup for 1.0 (#4303)
Browse files Browse the repository at this point in the history
* Remove deprecations

* Remove python 3.7

* Removed end year from license
  • Loading branch information
hoxbro authored and philippjfr committed Feb 8, 2023
1 parent 691367a commit 4717c13
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 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) 2018-2020, HoloViz team (holoviz.org).
Copyright (c) 2018, HoloViz team (holoviz.org).
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
6 changes: 0 additions & 6 deletions panel/pane/perspective.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,12 +329,6 @@ class Perspective(PaneBase, ReactiveData):

_updates: ClassVar[bool] = True

_deprecations = {
'computed_columns': 'expressions',
'column_pivots': 'split_by',
'row_pivots': 'group_by'
}

@classmethod
def applies(cls, object):
if isinstance(object, dict) and all(isinstance(v, (list, np.ndarray)) for v in object.values()):
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ def run(self):
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -280,7 +279,7 @@ def run(self):
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries"],
python_requires=">=3.7",
python_requires=">=3.8",
entry_points={
'console_scripts': [
'panel = panel.command:main'
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[tox]
# python version test group extra envs extra commands
envlist = {py37,py38,py39,py310,py311}-{flakes,unit,ui,unit_deploy,examples,all_recommended,deprecations}-{default}-{dev,pkg}
envlist = {py38,py39,py310,py311}-{flakes,unit,ui,unit_deploy,examples,all_recommended,deprecations}-{default}-{dev,pkg}
build = wheel

[_flakes]
Expand Down

0 comments on commit 4717c13

Please sign in to comment.