Skip to content

Commit

Permalink
Updates to release 1.9.6a4 (#610)
Browse files Browse the repository at this point in the history
Updated package.json

Updated tsconfig.json to match with panel and updated manifest with TS/bokeh files. I think this will fix #526 when installing from pip / conda.
  • Loading branch information
hoxbro authored Jan 5, 2023
1 parent 0a099b5 commit ffcbbe7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ include README.md
include geoviews/.version
include geoviews/models/*.ts
include geoviews/icons/*.png
include geoviews/*.json
include geoviews/index.ts
global-exclude *.py[co]
global-exclude *~
global-exclude *.ipynb_checkpoints/*
Expand Down
4 changes: 2 additions & 2 deletions geoviews/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion geoviews/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holoviz/geoviews",
"version": "1.9.6-a.2",
"version": "1.9.6-a.4",
"description": "Simple, concise geographical visualization in Python",
"license": "BSD-3-Clause",
"repository": {
Expand Down
13 changes: 7 additions & 6 deletions geoviews/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,20 @@
"sourceMap": true,
"importHelpers": false,
"experimentalDecorators": true,
"module": "esnext",
"module": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"target": "ES2017",
"lib": ["es2017", "dom", "dom.iterable"],
"target": "ES2020",
"lib": ["es2020", "dom", "dom.iterable"],
"baseUrl": ".",
"outDir": "./dist/lib",
"paths": {
"@bokehjs/*": [
"./node_modules/@bokeh/bokehjs/build/js/lib/*",
"./node_modules/@bokeh/bokehjs/build/js/types/*"
]
"node_modules/@bokeh/bokehjs/build/js/lib/*",
"node_modules/@bokeh/bokehjs/build/js/types/*"
],
}
},
"include": ["./**/*.ts"]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
license_file = LICENSE
license_files = LICENSE

[tool:pyctdev.conda]
namespace_map =
Expand Down

0 comments on commit ffcbbe7

Please sign in to comment.